gpt4 book ai didi

c++ - 在 C++ 中有使用模式匹配(使用正则表达式)的函数吗?

转载 作者:太空狗 更新时间:2023-10-29 23:25:18 38 4
gpt4 key购买 nike

有一个简单的C++方法可以在字符串上使用模式匹配吗?代码听起来应该像这样:

if (regexpcmp("l?nole*[0-9]", "linoleum1")) {
//we have a match!
} else {
//no match
}

最佳答案

您是否已经看过 Boost.Regex

const boost::regex e("l?nole*[0-9]");
if (regex_match("linoleum1", e)) {
//we have a match!
} else {
//no match
}

关于c++ - 在 C++ 中有使用模式匹配(使用正则表达式)的函数吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/329517/

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