I'm trying to do a replace of all instances of strings like
PageLocalize("Texts", "R73")
with something like
Texts.R73.Localise()
I have a regex for matching these strings:
PageLocalize\("([A-Za-z]+)", "([A-Za-z0-9]{0,6})"\)
And a replacement string:
$1.$2.Localise()
but The Regex Coach says my replacement result is
$1.$2.Localise()
What do I need to do to my regex to get the numbered groupings to work?