Skip to content
chrisbigart edited this page Aug 23, 2017 · 1 revision

Handy regex to automatically reformat thiscall functions from C-style to C++, e.g. combatManager::ResetLimitCreature(gpCombatManager); to gpCombatManager->ResetLimitCreature();

([^\s]+?)::(.+?)\(([^\,\)]+)(,\ )?(,([\s\n]))?([^;]*?)?(\);)

Also see the examples at regexr.com: http://regexr.com/3gjo9

Clone this wiki locally