I have lot of digits and I want to add spaces in between them, like so:
0123456789
--> 0 1 2 3 4 5 6 7 8 9
I'm trying to do this using the search and replace function in Sublime Text. What I've tried so far is using \S
to find all characters (there are only digits so it doesn't matter) and \1\s
to replace them. However, this deletes the digits and replaces them with s
. Does anybody know how to do this?