I have this string:
var string = "look1_slide2";
I would like to extract the the look number ie 1
and the slide ie 2
and save them in two different variables, I guess I could do it with a Regex but not sure how. Any help? The string will always have that format btw
Thanks!