Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
797 views
in Technique[技术] by (71.8m points)

regex - Remove Numbers in Notepad++

I have here a text file with

245. asdasd
45. asdasd
42. gfhfgh
5353. sdfsdf

want to remove all numbers in front of it. try it already with find and replace [0-9].

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Ctrl+F - Replace - Search mode: regular expression

Find What: [0-9]+

Replace With:

// Replace with is empty


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...