For example,
original text: 12.3
wanted text: 1.23
So I Ctrl+R, (click option:regular expressions)
Find input-box:(\d)\.
Replace input-box:\.\1
but the result is:1.13 not 1.23
Replace the text with searched text with \1
Docs for regex
https://regex.sorokin.engineer/en/lates ... substitute
shows that you must use $1, not \1.
https://regex.sorokin.engineer/en/lates ... substitute
shows that you must use $1, not \1.