Page 1 of 1

regular expression help

Posted: Mon Jun 12, 2006 12:25 pm
by juanpgadea
Hi i need to modify

1. Las suols...
2. Los julo...
3. dia de ju...

to look like this

<FNE n="1">. Las suols...</FNE>
<FNE n="2">. Los julo...</FNE>
<FNE n="3">. dia de ju...</FNE>

Thakns

Posted: Mon Jun 12, 2006 12:36 pm
by ben_josephs
Find what: ^([0-9]+)(\. .*)
Replace with: <FNE n="\1">\2</FNE>

[X] Regular expression
This assumes you are using Posix regular expression syntax:
Configure | Preferences | Editor

[X] Use POSIX regular expression syntax

THANKS

Posted: Mon Jun 12, 2006 12:59 pm
by juanpgadea
Thanks its works.