admin管理员组

文章数量:1558103

How to check if NSString begins with a certain character

How to check if NSString begins with a certain character

How do you check if an NSString begins with a certain character (the character *).

The * is an indicator for the type of the cell, so I need the contents of this NSString without the *, but need to know if the * exists.

You can use the -hasPrefix: method of NSString:

NSString* output = nil;
if([string hasPrefix:@"*"])
    output = [string substringFromIndex:1];

 

posted on 2014-07-14 14:36 罗斯摩根 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://wwwblogs/savagemorgan/p/3842672.html

本文标签: NSStringcheckcharacterbegins