Help about text find and replace
-
Hi Guys,
My name is Matteo nd , if is possible I need your help !!
I need to change all the lines like this “txt”: “AGUAAAA”, with this thext “txt”: “”,. the word Aguaaaa could be different for every line… could you help me?
thanks in advance -
Hello @matteo-salviato and All,
Very easy with regular expressions !
I supposed that your text contents usual double quotes
"
and not the Unicode chars“
and”
!Then :
-
Open the Replace dialog (
Ctrl + H
) -
SEARCH
(?-si)"txt":\x20"(.+?)"
-
REPLACE
"txt":\x20""
-
Tick the
Wrap around
option, preferably -
Select the
Regular expression
search mode -
Click on the
Replace All
button
Best Regards,
guy038
-
-
@guy038 said in Help about text find and replace:
Open the Replace dialog ( Ctrl + H )
SEARCH (?-si)“txt”:\x20"(.+?)"
REPLACE “txt”:\x20""
Tick the Wrap around option, preferably
Select the Regular expression search mode
Click on the Replace All button
Thanks a lot!!! it works very well!!!