How do you add a space/split up between each pair of characters.
eg 0x5C8934A3 --> 0x 5C 89 34 A3
I could use a macro but it just took to long to manualy set it up because the size of the strings.
what i know is how to find using. but i can not get the replace to work correctly Please show me how to preform this.
[0][x][0-9A-F]+
match
0x5C8934A3
Notepad++ has very limited regexes so you have to use something like this:
Search for
(..)
and replace with
\1
(Note there is a space after the \1
!)
(..)
means find two characters and store them
\1
get the characters stored in the first capturing group
Precondition for this simple solution is that there are only such strings and nothing else. And it will then add an unneeded space after the word. If this is not not wanted you can remove it afterwards.