C# 将正则表达式拆分为字符串数组

发布于 2024-12-18 04:34:37 字数 132 浏览 0 评论 0原文

假设我有一个像这样的正则表达式:

@"\b(one|two|three)\b";

如何将所有这些“正则表达式项”放入字符串数组中?例如,字符串数组将包含 3 个项目 - 一、二和三。

Suppose I have a regex like this:

@"\b(one|two|three)\b";

How can I get all of these "regex items" into a string array? For example, the string array would contain 3 items - one, two and three.

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

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

发布评论

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

评论(2

诺曦 2024-12-25 04:34:37

或者,您可以通过指定定义分割位置的模式来使用 RegEx.Split 方法。

Alternatively you can use the RegEx.Split method, by specifying a pattern that defines the splitting positions.

策马西风 2024-12-25 04:34:37

您可以使用 Match 类的 Groups 属性在正则表达式中挑选出成功匹配的项目。

You can use the Match class's Groups property to pick out successfully matched items in the regex.

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