'How to bulk edit/replace numbers in Notepad++

I want to change the following:

 0.25
 10.00
 10.00

to

 "0.25"
 "10.00"
 "10.00"

So that means changing to: "(number)"



Solution 1:[1]

  • Find: (\d+\.\d+)
  • Replace: "$1"
  • CHECK Regular expression
  • Replace all

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Toto