I need to have the ability to parse out a series of numbers in a string in C# / Regex. The numbers can be one or more digits long and are always at the end of the string and after the word "ID" for example:
"Test 123 Test - ID 589"
In this case I need to be able to pick out 589.
Any suggestions? Some of the code That I have used picks out all the numbers which is not what I want to do.
Thanks