Page 1 of 1

How-to Insert Character between found set?

Posted: Tue Apr 21, 2009 12:15 am
by mmattson
I can't figure out how to do this. I have a found set that consists of :

Code: Select all

\w\d
I want to insert a comma between the string character and the digit so that if the found set is U1, my result would be U,1.

Re: How-to Insert Character between found set?

Posted: Tue Apr 21, 2009 2:22 am
by mmattson
Solved it myself:

input find:

(\D)(\d)

Output:
$1,$2