How-to Insert Character between found set?

Get help with installation and running here.

Moderators: DataMystic Support, Moderators, DataMystic Support, Moderators, DataMystic Support, Moderators

Post Reply
mmattson
Posts: 2
Joined: Tue Apr 21, 2009 12:11 am

How-to Insert Character between found set?

Post 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.
mmattson
Posts: 2
Joined: Tue Apr 21, 2009 12:11 am

Re: How-to Insert Character between found set?

Post by mmattson »

Solved it myself:

input find:

(\D)(\d)

Output:
$1,$2
Post Reply