Extract 2 strings from an NSString separated by a special character

后端 未结 2 1155
情歌与酒
情歌与酒 2021-02-05 17:39

i have an NSString like \"Hello - this is me\". I want to search for the \"-\" and put the text before and after the \"-\" in two separate strings.

Anyone knows how to d

2条回答
  •  庸人自扰
    2021-02-05 18:04

    NSArray *subStrings = [myString componentsSeparatedByString:@"-"]; //or rather @" - "
    NSString *firstString = [subStrings objectAtIndex:0];
    NSString *lastString = [subStrings objectAtIndex:1];
    //Add some array range checking to it and you're done.
    

提交回复
热议问题