boost regex是否能够匹配给定二进制输入中的二进制数据?
例:
以二进制形式输入:
0x01 0x02 0x03 0x04 0x05 0x01 0x02 0x03 0x04 0x08
要匹配的二进制表达式:
0x01 0x02 0x03 0x04
在这种情况下,应匹配2个实例。
非常感谢!
答案 0 :(得分:0)
是的,boost :: regex支持二进制文件。
答案 1 :(得分:0)
你的问题对我来说不够干净。所以,如果这个答案不是那么 你在寻找,告诉我,我会删除。
regex
提升库比屏幕截图中的C++
强大得多:
当 C ++ 可以做到这一点时,当然 Boost 也能做到这一点。
std::regex::iterator
std::string binary( "0x01 0x02 0x03 0x04 0x05 0x01 0x02 0x03 0x04 0x08" );
std::basic_regex< char > regex( "0x01 0x02 0x03 0x04" );
// or
// std::basic_regex< char > regex( "0x01.+?4" );
std::regex_iterator< std::string::iterator > last;
std::regex_iterator< std::string::iterator > begin( binary.begin(), binary.end(), regex );
while( begin != last ){
std::cout << begin->str() << '\n';
++begin;
}
输出
0x01 0x02 0x03 0x04
0x01 0x02 0x03 0x04
或强>
std::regex_token::iterator
std::string binary( "0x01 0x02 0x03 0x04 0x05 0x01 0x02 0x03 0x04 0x08" );
std::basic_regex< char > regex( " 0x0[58] ?" );
std::regex_token_iterator< std::string::iterator > last;
std::regex_token_iterator< std::string::iterator > begin( binary.begin(), binary.end(), regex, -1 );
while( begin != last ){
std::cout << *begin << '\n';
++begin;
}
<强>输出强>
同样的
使用提升
std::string binary( "0x01 0x02 0x03 0x04 0x05 0x01 0x02 0x03 0x04 0x08" );
boost::basic_regex< char > regex( " 0x0[58] ?" );
boost::regex_token_iterator< std::string::const_iterator > last;
boost::regex_token_iterator< std::string::const_iterator > begin( binary.begin(), binary.end(), regex, -1 );
while( begin != last ){
std::cout << *begin << '\n';
++begin;
}
<强>输出强>
同样的
差异: std :: string :: const_iterator ,而不是 std :: string :: iterator