I need to get a variable, but strip off the first four characters. I know I could use Right(variable, Number) if the number of characters after the first four was always the same, but in this case it is not.
All variables will start with: foo_
For example: foo_34859 or foo_234 or foo_2 or foo_23908487
How do I get only the characters after the underscore, regardless of how many there are?
All variables will start with: foo_
For example: foo_34859 or foo_234 or foo_2 or foo_23908487
How do I get only the characters after the underscore, regardless of how many there are?