08.10.2015, 02:16
I'm trying to make a Regular Expression to convert PVars to standard variables in a CTRL + H. Can someone who is good at RegEx help me? This is what I have but it doesn't fully work:
Input:
Output:
How can I fix the RegEx and exclude the '(' and ')'
Код:
SetPVarInt((.*?), "HouseManager", (.*?));
Код:
pInfo[$2][pHouseManager] = $3;
Код:
SetPVarInt(playerid, "HouseManager", 0);
Код:
pInfo[(playerid][pHouseManager] = 0);