richardcrossley / aseisql

Automatically exported from code.google.com/p/aseisql
0 stars 0 forks source link

Regular expression support in search-replace. editor #45

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Editor's Choice.

Option to remove all the spaces(' ') and tabs('\t') that exist at the end
of line.

Original issue reported on code.google.com by zluis0@gmail.com on 9 Oct 2009 at 6:19

GoogleCodeExporter commented 8 years ago
better to do implementation of the replace with regular expression.
So this target could be achieved.

Original comment by daggett....@gmail.com on 12 Oct 2009 at 6:46

GoogleCodeExporter commented 8 years ago
Hi!
____________________

Text:
____________________
'begin'
'end'
"select"
'group'
'having'
____________________
Find what: '\w+'
Replace with: "\w+"
____________________

Result:
____________________
"begin"
"end"
"select"
"group"
"having"

It could do this kind of replacements?

Thanks! :)

Original comment by zluis0@gmail.com on 21 Oct 2009 at 6:51