Find/replace using wild cards to insert space between given characters

R

rcpandey.vs

I want to insert a space between two patterns. For example, in a strech of the text "23445asde" I want to insert a space between number and text which should appear like "234445 asde".
I can find the junction of number and text by using wildcards find "[0-9][a-z]" but replacing with ""\1, \2" doesnt work.
Where am I doing wrong? or what is the alternate way?
 
L

Lisa Wilke-Thissen

Hi,

[Word version?)
I want to insert a space between two patterns.
For example, in a strech of the text "23445asde"
I want to insert a space between number and
text which should appear like "234445 asde".
I can find the junction of number and text by
using wildcards find "[0-9][a-z]" but replacing
with ""\1, \2" doesnt work.
Where am I doing wrong?

missing the brackets ().

Find: ([0-9])([a-z])
Replace with: \2<space>\1
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top