正则表达式 – 查找版本号以外的所有内容

我有这个文字

Microsoft (R) Windows Script Host Version 5.8
Copyright (C) Microsoft Corporation. All rights reserved.

58.0.3029 Copyright 2011 Google Inc.

我想要的是找到一切

58.0.3029

我用它来找到模式

\d+(\.\d+\.\d+)

所以我必须找到所有,但我能做的最接近的就是这个

[\D+]+([\.\D+][\.\D+])

但它也排除了我不希望发生的其他数字5.8和2011

你能帮我找到合适的正则表达式吗?

我用http://www.regexpal.com/来测试

我正在使用一个用C#开发的工具

最佳答案 使用锚点(在多线模式下):

^\d[\d.]+
# match the start of the line
# require one digit
# followed by digit(s) and dot(s)

并用”替换找到的匹配项.见a demo on regex101.com.

点赞