我想修改给定的正则表达式以生成以下匹配列表。我很难用语言描述问题。
我想使用正则表达式来匹配一组'令牌'。具体来说,我希望匹配&&
,||
,;
,(
,)
,并且任何不包含这些字符的字符串都应匹配。
我遇到的问题是区分一个管道和两个管道。我怎样才能产生所需的匹配?非常感谢你的帮助!
表达式:
((&{2})|(\|{2})|(\()|(\))|(;)|[^&|;()]+)
测试字符串
a < b | c | d > e >> f && ((g) || h) ; i
预期匹配
a < b | c | d > e >> f
&&
(
(
g
)
||
h
)
;
i
实际匹配
a < b
|
c
|
d > e >> f
&&
(
(
g
)
||
h
)
;
i
我正在尝试为C ++中的程序实现自定义标记生成器。
示例代码
std::vector<std::string> Parser::tokenizeInput(std::string s) {
std::vector<std::string> returnTokens;
//tokenize correctly using this regex
std::regex rgx(R"S(((&{2})|(\|{2})|(\()|(\))|(;)|[^&|;()]+))S");
std::regex_iterator<std::string::iterator> rit ( s.begin(), s.end(), rgx );
std::regex_iterator<std::string::iterator> rend;
while (rit!=rend) {
std::string tokenStr = rit->str();
if(tokenStr.size() > 0 && tokenStr != " "){
//assure the token is not blank
//and push the token
boost::algorithm::trim(tokenStr);
returnTokens.push_back(tokenStr);
}
++rit;
}
return returnTokens;
}
示例驱动程序代码
//in main
std::vector<std::string> testVec = Parser::tokenizeInput(inputWithNoComments);
std::cout << "input string: " << inputWithNoComments << std::endl;
std::cout << "tokenized string[";
for(unsigned int i = 0; i < testVec.size(); i++){
std::cout << testVec[i];
if ( i + 1 < testVec.size() ) { std::cout << ", "; }
}
std::cout << "]" << std::endl;
制作输出
input string: (cat file > outFile) || ( ls -l | grep -i )
tokenized string[(, cat file > outFile, ), ||, (, ls -l, grep -i, )]
input string: a && b || c > d >> e < f | g
tokenized string[a, &&, b, ||, c > d >> e < f, g]
input string: foo | bar || foo || bar | foo | bar
tokenized string[foo, bar, ||, foo, ||, bar, foo, bar]
我希望输出
input string: (cat file > outFile) || ( ls -l | grep -i )
tokenized string[(, cat file > outFile, ), ||, (, ls -l | grep -i, )]
input string: a && b || c > d >> e < f | g
tokenized string[a, &&, b, ||, c > d >> e < f | g]
input string: foo | bar || foo || bar | foo | bar
tokenized string[foo | bar, ||, foo, ||, bar | foo | bar]
答案 0 :(得分:2)
我建议通过将{-1,0}
传递给sregex_token_iterator
来收集非匹配和匹配的子字符串,并使用更简单的正则表达式&&|\|\||[;()]
同时丢弃空子字符串(这是由于在找到连续匹配时分割字符串的方式):
std::regex rx(R"(&&|\|\||[();])");
std::string exp = "a < b | c | d > e >> f && ((g) || h) ; i";
std::sregex_token_iterator srti(exp.begin(), exp.end(), rx, {-1, 0});
std::vector<std::string> tokens;
std::remove_copy_if(srti, std::sregex_token_iterator(),
std::back_inserter(tokens),
[](std::string const &s) { return s.empty(); });
for( auto & p : tokens ) std::cout <<"'"<< p <<"'"<< std::endl;
请参阅C++ demo,输出:
'a < b | c | d > e >> f '
'&&'
' '
'('
'('
'g'
')'
' '
'||'
' h'
')'
' '
';'
' i'
空字符串删除代码的特别优惠转到Jerry Coffin。
答案 1 :(得分:1)
您尚未指定使用哪种语言,但大多数应用语言都支持在此正则表达式中拆分字符串:
" *((?=(\$\$|\|\||[;()])|(?<=\$\$|\|\|)|(?<=[;()])) *"
正则表达式是展望未来或者为你的术语看后面,但是不会消耗输入,因此分隔符将输出到结果数组。
如果你正在使用python,事情要简单得多;拆分这个正则表达式:
" *(\$\$|\|\||[;()]) *"
无论分隔符是捕获,都会成为输出数组的一部分。
答案 2 :(得分:0)
我准备了以下正则表达式并对其进行了测试,它产生的输出与输入字符串中描述的完全相同:
(?<=&&)[^;()]*|\(|\)|(?<=\|\|)[^;()]*|;|&&|\|\||([^|;()&]+(\|[^|;()&]+)*)*
或者这个:
\(|\)|;|&&|\|\||([^|;()&]+(&[^|;()&]+|\|[^|;()&]+)*)
让我知道它是否按预期工作!
<强>匹配强>
a < b | c | d > e >> f
&&
(
(
g
)
||
h
)
;
i
并测试:
(cat file > outFile) || ( ls -l | grep -i )
(cat file >> outFile) && ls -l | grep -i
((file < file) || ls -l ; ls)
cat < InputFile | tr a-z A-Z | tee out1 > out2 >> out3 | asd aasdasd | asd | asd || asd | asd
a | b || c | d && a || b && d ; g &&
a && b || c > d >> e < f | g
a < b | c | d > e >> f && ((g) || h) ; i