查找/删除(仅保留数字)

时间:2011-12-01 17:08:50

标签: regex notepad++

包含

的文本文件
123.234.531.123.5363
Text : some words here... 
Words : awesome//great+++
Rate : 2,231

131.53234.2414.5345.634
Text : some words here... 
Words : painfull//sad
Rate : 182,21

现在我需要 长号:

123.234.531.123.5363
131.53234.2414.5345.634

我应该使用什么作为查找/替换?

编辑^\D.*$

解决了我的问题

2 个答案:

答案 0 :(得分:1)

如果你需要的是搜索的正则表达式,这可能会有效:

\d+\.[.\d]+

答案 1 :(得分:0)

如果使用OS Windows,则可以在Notepad ++中使用正则表达式 http://markantoniou.blogspot.com/2008/06/notepad-how-to-use-regular-expressions.html

enter image description here