Search code examples
automationtext-editorreplacebackreferencekomodoedit

How do I use Find/Replace with a backreference followed by a number?


I want to do a find/replace on the string matching (abcdefg)1 with \12, but it doesn't work. How do I do it?


Solution

  • Add a leading zero to the backreference:

    \012
    

    References