I have a string that looks like this:
[ID] [LastName], [FirstName]
I want to fetch the ID, it consists of one or more digits. I'm guessing I have to find the first space of the string and then fetch the digit(s) before that space. If I understand things correctly I can't use Substring or IndexOf for this.
Any ideas on how to solve this? As always - I'm thankful for any help!