notepad++ - Notepad ++ replace random numbers inside a same word -


how can replace in notepad ++

all lines

myplay1() myplay2() myplay3() myplay4() myplay5() myplay6() myplay7() myplay8() myplay9() myplay10() 

to

myplayc(this) 

so think need find: myplay*() , replace: myplayc(this)

you try changing search mode regular expression.

then find

myplay[0-9]*\(\) 

replace with

myplayc\(this\) 

Comments