使用正则表达式搜索 C++
我正在使用 Boost.Regex 来实现类似的功能:搜索“|”然后取“|”左边的部分并把它放在一个字符串中,与右侧部分相同:
string s1;
string s2;
who | sort
在此之后 s1 应该是“who”,s2 应该是“sort”。
如果我没记错的话,这在Python中是可能的,我怎样才能在Boost中使用正则表达式来做到这一点?
谢谢。
I'm using Boost.Regex to achieve something like this: search for a "|" and then take the left part of the "|" and put it a string, same with the right part:
string s1;
string s2;
who | sort
After this s1 should be "who" and s2 shoudl be "sort".
If I remember good, it was posible in Python, how can I do it using regular expressions in Boost ?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 C++ 中拆分字符串?
Split a string in C++?
这是简短的示例:
此外,您可能想查看 Boost.Tokenizer< /a>.
Here's short sample:
Additionally you maybe want to look on Boost.Tokenizer.