So I have a string that's come out of an OCR library like so:
ALLee;YIeiqm Y E JOHNSON-TEST g jammima g 02345678 8;;Y_(____. g GHJ- 444 4333333333 * BAKERY -- Scones p ii
I want to search through this string and find the "02345678" part. This string can be anything but it is always 8 characters long and all the characters are together. How can I search through the string to find the 1st occurrence of an 8 character contant string without a space or character that isn't in the ranges of A to Z and 0 to 9?
Thanks!
Adam