0

如何在 C++ 中使用 boost::regex 提取搜索词,尤其是当词中包含 html 实体时。

例如

p=test&test&sort=price
Search Term would be 'test&test'

p=test&test&sort=price
Search Term would be 'test&test'

Boost正则表达式代码如下

bool regexExtract(const string &strInput,string &strOutput,const string& regex)
{
  bool succ = false;
  if ( ! strOutput.empty() )
  {
    boost::regex re(regex, boost::regex::perl);//,boost::regex::perl | boost:regex::icase);
    boost::sregex_iterator res(strInput.begin(),strInput.end(),re);
    boost::sregex_iterator end;
    for (; res != end; ++res)
        cout << (*res)[0] << std::endl;
  }
  return succ;
}

使用正则表达式string re = "p=(([^&;#]|(&.*?;))*).*";它在下面打印

p=test&amp;test&sort=asc

虽然 perl 中的相同正则表达式工作得很好

echo "p=test&asd;test&sort=asc" | perl -ne 'if ( $_ =~ /p=(([^\&;#]|(&.*?;))*).*/){print $1;}'
test&asd;test
4

0 回答 0