使用正则表达式提取字符串
我可能没有使用正确的搜索词,因为我一直在
用正则表达式(返回布尔值)查找“匹配\验证”字符串,而我想要的是从另一个字符串中提取一个字符串。
如何使用正则表达式模式提取字符串的某些部分?
I'm probably not using the right search term, because I keep finding
'matching\validating' string with regex (returns boolean) while I want is to extract a string from an other string.
How can I extract some parts of a string using a regex pattern?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是您正在寻找的匹配。
Regex.Match
和Regex.Matches
方法使用正则表达式查找字符串的一个或多个部分,并返回Match
或 < code>MatchCollection 与结果。示例:
输出:
It's matching that you are looking for. The
Regex.Match
andRegex.Matches
methods use a regular expression to find one or several parts of a string, and returns aMatch
orMatchCollection
with the result.Example:
Output: