Hi
I have a TBuf variable in my code that looks as follows:
TBuf<100> test;
test.Copy( _L("02somestringofrandomlength"));
What I would like to do now, is to ignore the number (which takes the first two characters). Is there a nice way to extract the variable-length string from the test variable and thereby dismissing the number at the beginning?
many thanks