#5863
Yutaka Emura
Keymaster

erdem_ustu wrote:
hi,
I have lots of logs file.I want to find/replace but have a lot of criteria.
for example find .doid replace do id
find .dotb_id replace do tb_id
find .doCOLUMN replace .do COLUMN……

is it possible to find .do* replace .do *(put one space .do and any words)
Note: * means any words or characters

I found some link (http://www.emeditor.com/modules/newbb/viewtopic.php?topic_id=675&forum=19 ) but I don’t know which howmany kinds of word/characters

please help

Check “Use Regular Expressions” in the Replace dialog box, and then

Find:
do(w+?)

Replace with:
do 1

Are you happy with this? :-)