Page 1 of 1

Replace After Patter

Posted: Mon Aug 30, 2010 7:59 pm
by rajeshatbuzz
Hi,

for example i have following email addres.. What I want is:

hrd@nanavatihospital.org
ajeh@vsnl.com
info@spec.om



Requirement: All the content which is before @ should be appended in each line with one more space

Some thing like ......................
hrd hrd@nanavatihospital.org
ajeh ajeh@vsnl.com
info info@spec.om


Any help on this

Posted: Mon Aug 30, 2010 9:32 pm
by ben_josephs
Find what: ^([^@]+)@
Replace with: \1 \1@

[X] Regular expression

Replace All
This assumes you are using Posix regular expression syntax:
Configure | Preferences | Editor

[X] Use POSIX regular expression syntax

Posted: Sun Sep 05, 2010 8:08 am
by rajeshatbuzz
Thanks..

This worked