preg_match_all 在 C# 中相当于什么?

发布于 2024-07-27 05:19:23 字数 110 浏览 12 评论 0原文

主题是我打开一个文件并将其所有数据放入字符串中,并且我将此字符串与不返回任何内容的正则表达式匹配。 但是 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 技术交流群。

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

发布评论

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

评论(2

月亮坠入山谷 2024-08-03 05:19:23

.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 equivalent Matches method on a compiled regular expression. It returns a MatchCollection 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?

口干舌燥 2024-08-03 05:19:23

C# 中有一个 Regex.Matches 方法可供您使用。

There is a Regex.Matches method in C# that you can use.

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