将 C# 正则表达式转换为 C++/CLI?

发布于 2024-09-04 11:08:22 字数 571 浏览 3 评论 0原文

我在让 C# 正则表达式适用于 C++ 时遇到问题。在 C# 中,我有:

 //using System.Text.RegularExpressions;
 Regex YourName = new Regex("?<name>\w{3,16}");

但在 C++ 中,这不正确匹配:

 //using namespace System::Text::RegularExpressions;
 Regex^ rx = gcnew Regex("?<name>\w{3,16}", static_cast<RegexOptions>(RegexOptions::Compiled));

后面跟着:

 MatchCollection^ matches = rx->Matches( input ); //input=String^

匹配始终返回 0 计数。我真的在做一些愚蠢的事情吗?将 C# 正则表达式转换为 C++ 正则表达式是否需要执行一些特殊操作?非常感谢您能对此提供任何帮助。

I'm having trouble getting my C# Regex working for C++. In C# I have:

 //using System.Text.RegularExpressions;
 Regex YourName = new Regex("?<name>\w{3,16}");

but in C++ this does not correctly match:

 //using namespace System::Text::RegularExpressions;
 Regex^ rx = gcnew Regex("?<name>\w{3,16}", static_cast<RegexOptions>(RegexOptions::Compiled));

followed by:

 MatchCollection^ matches = rx->Matches( input ); //input=String^

Matches always return 0 count. Am I doing something really silly? Is there something special you need to do to convert C# regex into C++ regex? Many thanks for any light you can shed on this.

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

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

发布评论

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

评论(1

拔了角的鹿 2024-09-11 11:08:22

您需要从编译器中转义 \,如下所示:

Regex^ rx = gcnew Regex("?<name>\\w{3,16}", static_cast<RegexOptions>(RegexOptions::Compiled));

You need to escape the \ from the compiler, like this:

Regex^ rx = gcnew Regex("?<name>\\w{3,16}", static_cast<RegexOptions>(RegexOptions::Compiled));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文