again another wildcard find/replace
-
Okey, i know theirs prob billion answers to this question, i see stuff like .* / and other stuff in different place, looks like garble to me. so a simple thing for me
‘text before’ craft_time=“10” <text after>
this file has like 100+ entries all them have craft_time entery i want to change all the numbers in the " " from whatever it is to 1, so they all will be craft_time=“1”
-
find:
craft_time="\d+"
repl:craft_time="1"
mode: regular expression