MSDN 上哪里有对正则表达式标头的引用?
我现在可以在 VS 2010 中直接包含此文件,而无需 tr1,但在 MSDN 上找不到此文件的描述。 MSDN 上哪里有对正则表达式标头的引用?
I can include this file directly now without tr1 in VS 2010 but can't find description of this file anywhere on MSDN. Where is a reference to regex header on MSDN?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除了
之外,您不需要任何特定标头来包含 tr1 功能。要开始在 tr1 中使用正则表达式,我建议阅读:http://www.johndcook.com/cpp_regex。 htmlYou shouldn't need any specific headers beyond
<regex>
to include the tr1 functionality. To get start using Regular Expressions in tr1 I suggest reading: http://www.johndcook.com/cpp_regex.htmlMSDN 上的正则表达式描述:
http://msdn.microsoft.com/en- us/library/bb982382.aspx
基本上,您创建“basic_regex”对象,然后调用“regex_match”或“regex_replace”函数
The regex description on MSDN:
http://msdn.microsoft.com/en-us/library/bb982382.aspx
Basically, you create "basic_regex" objects, then call the "regex_match" or "regex_replace" functions