将 C# 正则表达式转换为 C++/CLI?
我在让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要从编译器中转义
\
,如下所示:You need to escape the
\
from the compiler, like this: