08.10.2015, 02:45
Escape the brackets that are meant as part of the text, and not as groups:
this should do it for most editors. Else dont use . matchers, better use what youre expecting to be there.
(not escaping the brackets here would cause the line to not being matched at all)
Код:
SetPVarInt\((.*?), "HouseManager", (.*?)\);
Код:
SetPVarInt\(([a-zA-Z0-9_]+), "HouseManager", ([0-9]+)\);