Break NSString using an NSString, get everything after the string that was used to break/separate.
- by Cole
I'm trying to get the DOE,JOHN from the below NSString:
IDCHK9898960101DL00300171DL1ZADOE,JOHN
I was trying to split the string on 1ZA, as that will be constant.
Here's what I've tried so far, but it's giving me the opposite of what I'm looking for:
NSString *getTheNameOuttaHere = @"IDCHK9898960101DL00300171DL1ZADOE,JOHN";
// scan for "1ZA"…