我有一个字符串,我试图获得前2个字符和字符串的其余部分.这就是我试图这样做的方式:
NSString *textAll = [arrayOfMessages objectAtIndex:indexPath.row]; NSString *textMessage = [textAll substringFromIndex:2]; NSString *textType = [textAll substringToIndex:1];
textAll有这样的形式:消息本身…..
textType应该返回’HE’
textMessage应该返回’消息本身…..’
Textmessage现在给我的消息,但我似乎无法获得textType …