NSSCanner-随笔

最近在项目相对比较的清闲,有时间沉下来去研究一些自己未曾接触过的东西。之前到项目中用到过NSSCanner,当然就是为了实现字符串截取到网上copy的代码,今天也去研究了下。

百度了很久基本上没有找到我要的答案,后面换成Google同样也没找到我需要的东西,最后无奈的很只能去研究苹果的官方文档,收获还是蛮大的。
也别说太多的没用东西,主要就讲讲我理解其中几个重要的api吧。

@property (nullable, copy) NSCharacterSet *charactersToBeSkipped;
//默认值是whitespace and newline character set

从字面意思也能很清楚的理解到,这是用来初始化需要跳过扫描字符的集合。

@property NSUInteger scanLocation;//扫描的位置

最让我理解不透的是下面两个API:

- (BOOL)scanString:(NSString *)string intoString:(NSString * __nullable * __nullable)result;
扫描指定的字符串,如果找到匹配返回引用等效字符串对象。测试了下就是跳过过滤字符,从头开始找,如果找到了返回yes并将result赋值为string,并且将扫描位置移动到指定位置。
- (BOOL)scanUpToString:(NSString *) stopString intoString:(NSString * __nullable * __nullable)result;
这个主要扫描字符串是否已stopString结尾,同时将开始扫描位置到stopString之前的字符串赋值给result。

对于第二个api可能会比较的难理解,我们来看看官方给出的解释吧。

If stopString
 is present in the receiver, then on return the scan location is set to the beginning of that string.
If stopString
 is the first string in the receiver, then the method returns NO
 and *stringValue*
 is not changed.
If the search string (stopString
) isn't present in the scanner's source string, the remainder of the source string is put into *stringValue*
, the receiver’s scanLocation
 is advanced to the end of the source string, and the method returns YES
.
Invoke this method with NULL
 as *stringValue*
 to simply scan up to a given string.

可以看出,第一条主要是说如果在扫描的字符串中找到了一stopString结尾的位置,则返回YES并且将result赋值为从开始扫描位置开始到stopString之前的部分。
第二条:主要是讲如果是从扫描位置开始以stopString开头的字符串,则返回NO并且result设置为nil
第三条:就是如果在字符串扫描位置开始到字符串最后,没有已stopString结尾的部分,则返回YES并将result返回为从扫描开始位置到最后的子字符串。
其他的api可以参照上面两个。

你可能感兴趣的:(NSSCanner-随笔)