string num = re_find("(\d+)$", s);
but you have to escape it:
string num = re_find("(\\\\\d+)$", s);
The internet is full of useful regex examples that could save you a lot of time but good luck using them in Houdini as is.
Languages like Python and C# have intuitive ways to escape regular expressions.
ID# 68317 - Submitted more than a year ago.
