Reply To: GREP to change space to tab

#76744
Masood Ahmad
Participant

After looking at your example text it seems that the text just before the space is a hash symbol followed by digits, if that is so, then here is the code for you. Try this and let us know if it works for you.

GREP Find Change:
Find what: (\K#\d+)(\d)
Change to: $1$2

I hope you are working in CS6 or higher version, because \K code didn’t work in lower version.

This article was last modified on July 21, 2015

Comments (0)

Loading comments...