I am using ultraedit 13.10+1 and attempting to use a perl style regex to find spaces between a word and a number, and replace the found text with a delimiter. In the file example below I would expect to find the whitespace between the word preceding the date and the date on each line.
# is a place holder for a tab character.
Preliminary Project Documents Created#6/22/07
Preliminary Project Documents Sent to Client#6/29/07
Conduct Technical Planning Meeting#5/18/07
Customer Orders Hardware#6/12/07
This regex finds and highlights the correct whitespace on each line.
(?<=\w)[\s](?=\d)
When I try to replace the whitespace with "XX" nothing happens. The text is found, I press replace, and the find goes to the next instance. The XX is not written to the file.
Any idea's.
Thanks,
Pete.
# is a place holder for a tab character.
Preliminary Project Documents Created#6/22/07
Preliminary Project Documents Sent to Client#6/29/07
Conduct Technical Planning Meeting#5/18/07
Customer Orders Hardware#6/12/07
This regex finds and highlights the correct whitespace on each line.
(?<=\w)[\s](?=\d)
When I try to replace the whitespace with "XX" nothing happens. The text is found, I press replace, and the find goes to the next instance. The XX is not written to the file.
Any idea's.
Thanks,
Pete.