Add comma to numbers at every three digits in Notepad++
Adding a comma as a delimiter at every three digits in integers, consisting of consecutive digits in Notepad++ editor:
- Ctrl + H
- Find What: (\d)(?=(\d\d\d)+(?!\d))
- Replace With: \1,
- Wrap around
- Search Mode: Regular expression
- Replace All
Operating systems
- Windows
More
- Add thousands separator into numbers (JavaScript)
- Match any character in Notepad++ replace
- Remove all numbers from text in Notepad++
- Remove tabs at the beginning of lines in Notepad++
- Remove the first 10 characters from every line in Notepad++
- Remove the last 10 characters from every line in Notepad++