Using:
${10}
I just tried it and it worked for me.
I also tried using find:
^(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)$
Replace with: $10
And it worked. However, I am using v2.0.2 build 2221. The same with \10 does not work, but it works as you described in your question.
It may be worth noting that many of the regex engines change from \# to $# , so thatβs probably why $# works better for me even without braces.
Although now, if you want to replace the 10th capture, followed by a number (for example, $ 100), the engine will look for the 100th capture group and will replace nothing for your example.
Jerry source share