Let's say I have a string like:
SORT_123_456
Is there an easy way to parse the two integer values? I do not know how many digits these values will have. It would also be helpful if I could validate the other characters and just abandon the parsing if they don't appear as I have them above (that would indicate something is wrong).
I know I can parse character by character, but I was wondering if Regex could handle this.
I just haven't really used regular expressions. Can someone tell me if this can be done more easily using Regex?
SORT_was missingRegEx