MSDN 上哪里有对正则表达式标头的引用?

发布于 2024-09-10 19:26:52 字数 80 浏览 1 评论 0原文

我现在可以在 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 技术交流群。

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

发布评论

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

评论(2

童话里做英雄 2024-09-17 19:26:54

除了 之外,您不需要任何特定标头来包含 tr1 功能。要开始在 tr1 中使用正则表达式,我建议阅读:http://www.johndcook.com/cpp_regex。 html

You 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.html

寄与心 2024-09-17 19:26:53

MSDN 上的正则表达式描述:

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

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