R ross.32 macrumors 6502 Original poster Jun 27, 2009 #1 I know there has to be a really simple way to do this, but I can't figure it out. I have a bunch of radar site NSStrings (such as KTLX or KDET). I need a method to remove the first letter (so a method that would return TLX or DET). Thanks!
I know there has to be a really simple way to do this, but I can't figure it out. I have a bunch of radar site NSStrings (such as KTLX or KDET). I need a method to remove the first letter (so a method that would return TLX or DET). Thanks!
G Guiyon macrumors 6502a Jun 27, 2009 #2 Take a look at the "Dividing Strings" section of the NSString documentation.
R ross.32 macrumors 6502 Original poster Jun 27, 2009 #3 Wow that was really easy. Used -substringFromIndex:1 Thanks!