fromsymbol equivalent in JS?
Hi,
I am looking for a way to break a string into a string and an int within a JS file. For example, if I had the string "foo2" and wanted to break it into the string "foo" and the int 2.
Thanks,
Eric
haven't tried it in max, but there is paresInt(string, radix). Google is your friend in situations like this. I simply googled: javascript string to int.
You would probably be best using regular expressions, there's lots of examples of out there for you to look through.
Alright, many thanks to both of you!