Quote:
Originally Posted by macropod
Youy could use a wildcard Find/Replace, where:
Find = ([0-9]{1,})[^13^l]([0-9]{1,}[^13^l])
Replace = \1\2
or:
Find = ([!^13]{1,})[^13^l]([!^13]{1,}[^13^l])
Replace = \1\2
The first one will work only on lines/paragraphs containing numbers; the second with any content.
|
hey, thanks for the help, but the second formula you gave me, which is what I need since I'm not just working with numbers, is only working like this:
1
2
34
5
1
2
34
5
...as you can see, it's only working on every fourth line. Any advice?