Search code examples
regexnotepad++

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].


Solution

  • Ctrl+F - Replace - Search mode: regular expression

    Find What: [0-9]+

    Replace With:

    // Replace with is empty