gpt4 book ai didi

regex - 检查字符串是否以 CMake 中的名称结尾

转载 作者:行者123 更新时间:2023-12-04 22:18:30 25 4
gpt4 key购买 nike

我想检查 CMAKE_SOURCE_DIR变量以特定名称结尾。我需要使用 MATCHES为它,但它似乎不起作用。

我写过:

IF(CMAKE_SOURCE_DIR MATCHES "*MyFolderName")
# code
ENDIF(CMAKE_SOURCE_DIR MATCHES "*MyFolderName")

但它不起作用。我收到以下错误:
RegularExpression::compile(): ?+* follows nothing.
RegularExpression::compile(): Error in compile

想要我能做些什么来修复比赛?

最佳答案

通常,在正则表达式中,“*”表示“在前面重复零次或多次”。 CMake 也不异常(exception)。对于字符串末尾的匹配,使用 $ :

CMAKE_SOURCE_DIR MATCHES "MyFolderName$"

CMake 正则表达式描述 here .

关于regex - 检查字符串是否以 CMake 中的名称结尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48805592/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com