VSCode Regex Find/Replace In Files: can't get a numbered capturing group followed by numbers to work out
问题 I have a need to replace this: fixed variable 123 with this: fixed variable 234 In VSCode this matches fine: fixed(.*)123 I can't find any way to make it put the capture in the output if a number follows: fixed$1234 fixed${1}234 But the find replace window just looks like this: I read that VSCode uses rust flavoured rexes.. Here indicates ${1}234 should work, but VSCode just puts it in the output.. Tried named capture in a style according to here fixed(?P<n>.*)123 //"invalid regular