search for "[0-9]$"
replace with “\1 |”
The search works fine but replace does not interpret \1 as backreference
Regex options is turned on. regex backreference worked for me before, not sure how it stopped working
search for "[0-9]$"
replace with “\1 |”
The search works fine but replace does not interpret \1 as backreference
Regex options is turned on. regex backreference worked for me before, not sure how it stopped working