使用 boost 正则表达式匹配二进制数据

发布于 2024-12-03 06:03:30 字数 245 浏览 1 评论 0原文

boost regex 是否能够匹配给定二进制输入中的二进制数据?

例如:
以二进制形式输入:
0x01 0x02 0x03 0x04 0x05 0x01 0x02 0x03 0x04 0x08

要匹配的二进制表达式:
0x01 0x02 0x03 0x04

在本例中,应匹配 2 个实例。

非常感谢!

Is boost regex able to match binary data in a given binary input?

Ex.:
Input in binary form:
0x01 0x02 0x03 0x04 0x05 0x01 0x02 0x03 0x04 0x08

Binary expression to match:
0x01 0x02 0x03 0x04

In this case, 2 instances should be matched.

Many thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

海夕 2024-12-10 06:03:30

是的,boost::regex 支持二进制。

Yes, boost::regex supports binary.

少钕鈤記 2024-12-10 06:03:30

你的问题对我来说不够清晰。那么如果这个答案不是什么
您在寻找,只需告诉我,我将删除它。

regex boost 库比 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

Your question is not clean enough to me. So If this answer is not what
you looking for, just tell me I will delete it.

The regex boost library is much powerful than C++ as you can in the screenshot:

enter image description here

picture source

Also when the C++ can do it, of course Boost can do it, as well.
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;
}  

output

0x01 0x02 0x03 0x04
0x01 0x02 0x03 0x04  

or
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;
}

output
as the same


With boost

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;
}  

output
as the same

difference: std::string::const_iterator, instead of std::string::iterator

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文