Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
C++ splitting a string?
I can't really help you directly (I know VERY little C++), but I googled C++ Forums, and got this: http://forums.devshed.com/ Try posting there, I'm sure a programming oriented community would give you more sufficient results than a hacking directed community. Good Luck :) -Xer0X|manic
Well, if you just want to retrieve individual characters, how about using the at() method.
if a string variable 'str' is the string you want to retrieve a character from, and an integer variable 'i' is the location of the character in the string, and a char variable 'a' is what you wish to load it on to, then you could just use
a = str.at(i);