What's up all? I have a quick question for anyone out there... I have a file that i have to run through and parse... I want to extract all values of the format r00, where 00 are any numbers. The problem is that I could have r1, or r11. So I never know if there are two digits in the string, or just one. I have the code written that extracts the contents of the file and places them in a string buffer. I can run through each line, character by character, but I just don't know where to go after that.. I think it's pretty safe to say that if an 'r' is encountered and a number follows it, then I want it... Any suggestions?