search and NOT replace, but add
-
I need to find the sequence [0-9][A-Z][0-9] and add the tab character I need after the result without changing the original sequence.
Thank you for your help. -
@Alex-Hlebnik said in search and NOT replace, but add:
I need to find the sequence [0-9][A-Z][0-9] and add the tab character I need after the result without changing the original sequence.
Thank you for your help.In a regular expression replacement,
$0
represents the string the find expression matched. So you can do what you want by making the replace string$0\t
. -
@Coises Joo! Thank you! It’s work!
Case is closed