preg_match_all 在 C# 中相当于什么?
主题是我打开一个文件并将其所有数据放入字符串中,并且我将此字符串与不返回任何内容的正则表达式匹配。 但是 PHP 中的相同正则表达式使用 preg_match_all 返回相同文本的值。 有人有主意吗?
The theme is i opened a file and get all it's data into string and i am matching this string with the regex returning none. But the same regex in PHP is returning values for the same text using preg_match_all. Anyone having a idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
.NET 中最接近
preg_match_all()
的方法是静态 Regex.Matches(String,String) 调用,或编译正则表达式上的等效Matches
方法。 它返回一个MatchCollection
,您可以使用它来计算匹配项并循环遍历每个匹配项。您能否提供一些简短的独立代码来显示哪些内容不起作用?
The method in .NET that’s closest to
preg_match_all()
is the static Regex.Matches(String,String) call, or the equivalentMatches
method on a compiled regular expression. It returns aMatchCollection
that you can use to count the matches and to loop over each one.Can you provide some short, self-contained code to show what’s not working?
C# 中有一个 Regex.Matches 方法可供您使用。
There is a Regex.Matches method in C# that you can use.