比如文字是: Hello my name is bob
find what 那里是: my name is (w+)
replace with 那里是: my name used to be $1
点replace,就可以把文字变为: Hello my name used to be bob
其中$1是正则的反向引用,它引用了查找条件里的(w+)
比如文字是: Hello my name is bob
find what 那里是: my name is (w+)
replace with 那里是: my name used to be $1
点replace,就可以把文字变为: Hello my name used to be bob
其中$1是正则的反向引用,它引用了查找条件里的(w+)