Mahesh Dubey

Mahesh Dubey2

About Me

I am a FX TD working at DNEG India.
EXPERTISE
Technical Director
INDUSTRY
Film/TV

Connect

LOCATION
India
WEBSITE

Houdini Skills

Availability

Not Specified

Recent Forum Posts

regular expression in vop and vex Aug. 26, 2021, 2:43 a.m.

For regular expressions you can check this.
https://regexr.com/ [regexr.com]
https://regex101.com/ [regex101.com]
It will help you understand all the patterns and it's meaning.
And your code should be like this, because re_findall returns array data type.
Also not sure about uppercase R may not work.
string s ='abc2';
s@num1=re_findall('\\\\\d', s);
s@num2=re_findall(r'\d', s);
s@num3=re_findall(r'(\d)', s);//