<div dir="ltr">Are back-references supported in the Find and Replace regex expressions?<div><br></div><div>I want to find a one or two digit number:</div><div><br></div><div>Activity [\d]{1,2}<br></div><div><br></div><div>And replace with the same match but with new line appended</div><div><br></div><div>Activity \1 \\\\<br></div><div><br></div><div>This replaces all occurrences with the \1 literal and not its value. What is the proper syntax? </div></div>