Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个字符串,可以包含任意数量的任何类型的字符。我正在寻找使用正则表达式来提取模式并将它们放入我以后可以操作的字符串中。
例如:我希望正则表达式提取所有 3 位数字序列。因此,如果我有一个字符串“Easy as 123”,我会从中得到“123”。
顺便说一句,这适用于 C#.net 和 VB.net
非常感谢。
(\d+)
( start capturing group \d capture digits + capture one or more ) end capturing group
这将提取数字。但我建议您阅读正则表达式,以便您可以学习约定并编写自己的约定。尝试使用regexr来测试它们。