版本记录
版本号 | 时间 |
---|---|
V1.0 | 2017.08.22 |
前言
前面我简单的写了些NSString的初始化,写了几篇,都不难,但是可以对新手有一定的小帮助,对于大神级人物可以略过这几篇,NSString本来就没有难的,都是细枝末节,忘记了查一下就会了,没有技术难点,下面我们继续~~~
1. NSString简单细说(一)—— NSString整体架构
2. NSString简单细说(二)—— NSString的初始化
3. NSString简单细说(三)—— NSString初始化
4. NSString简单细说(四)—— 从URL初始化
5. NSString简单细说(五)—— 向文件或者URL写入
6. NSString简单细说(六)—— 字符串的长度
7. NSString简单细说(七)—— 与C字符串的转化
8. NSString简单细说(八)—— 识别和比较字符串
9. NSString简单细说(九)—— 字符串的合并
10. NSString简单细说(十)—— 字符串的分解
11. NSString简单细说(十一)—— 字符串的查找
12. NSString简单细说(十二)—— 字符串的替换
13. NSString简单细说(十三)—— 字符串的分行和分段
14. NSString简单细说(十四)—— 字符串位置的计算
15. NSString简单细说(十五)—— 字符串转化为propertyList
16. NSString简单细说(十六)—— 画字符串
17. NSString简单细说(十七)—— 字符串的折叠和前缀
18. NSString简单细说(十八)—— 字符串中大小写子母的变换
19. NSString简单细说(十九)—— 根据映射获取字符串
20. NSString简单细说(二十)—— 获取字符串的数值
21. NSString简单细说(二十一)—— 字符串与编码
22. NSString简单细说(二十二)—— 与路径相关(一)
23. NSString简单细说(二十三)—— 与路径相关(二)
23. NSString简单细说(二十三)—— 与路径相关(二)
24. NSString简单细说(二十四)—— 与URL相关
这一篇我们说一下语言标签与分析。
一、 - (void)enumerateLinguisticTagsInRange:(NSRange)range scheme:(NSString *)tagScheme options:(NSLinguisticTaggerOptions)opts orthography:(NSOrthography *)orthography usingBlock:(void (^)(NSString *tag, NSRange tokenRange, NSRange sentenceRange, BOOL *stop))block;
我们看一下这个方法的作用:通过枚举字符串的特定范围对指定的字符串进行语言分析,为Block提供位置标签。
下面我们看一下参数:
-
range
:要分析字符串的位置区间。 -
tagScheme
:要使用的标签方案。 请参阅语言标签方案支持值。 -
NSLinguisticTaggerOptions
:使用的语言标签选项。 请参见NSLinguisticTaggerOptions的常量。 这些常数可以使用C位按OR运算符进行组合。这个是一个枚举,具体参见下面:
/* For NSLinguisticTagSchemeTokenType, NSLinguisticTagSchemeLexicalClass, NSLinguisticTagSchemeNameType, and NSLinguisticTagSchemeNameTypeOrLexicalClass, tags will be taken from the lists above (clients may use == comparison). Tags for NSLinguisticTagSchemeLemma are lemmas from the language. Tags for NSLinguisticTagSchemeLanguage are standard language abbreviations. Tags for NSLinguisticTagSchemeScript are standard script abbreviations.
*/
/* Options arguments of type NSLinguisticTaggerOptions may include the following flags, which allow clients interested only in certain general types of tokens to specify that tokens of other types should be omitted from the returned results. */
typedef NS_OPTIONS(NSUInteger, NSLinguisticTaggerOptions) { /* Any combination of options from the enumeration. */
NSLinguisticTaggerOmitWords = 1 << 0, /* Omit tokens of type NSLinguisticTagWord. */
NSLinguisticTaggerOmitPunctuation = 1 << 1, /* Omit tokens of type NSLinguisticTagPunctuation. */
NSLinguisticTaggerOmitWhitespace = 1 << 2, /* Omit tokens of type NSLinguisticTagWhitespace. */
NSLinguisticTaggerOmitOther = 1 << 3, /* Omit tokens of type NSLinguisticTagOther. */
NSLinguisticTaggerJoinNames = 1 << 4 /* Join tokens of tag scheme NSLinguisticTagSchemeNameType. */
};
-
orthography
:字符串的正字法。 如果没有,语言标签将尝试从字符串内容中确定正字法。 -
block
:block中包含很多其他参数。-
tag
:标记的标签方案。 opts参数指定所在的标记器选项的类型。 -
tokenRange
:匹配标签方案的字符串的范围。 -
sentenceRange
:找到token的句子的范围。 -
stop
:对布尔值的引用。 该块可以将该值设置为YES,以停止数组的进一步处理。 停止参数是一个out-only
参数。 您应该只在Block中将此布尔值设置为YES。
-
这里我们还要注意:
- 这是一种方便的方法。 它相当于创建一个
NSLinguisticTagger
的实例,将接收者指定为要分析的字符串,并使用正字法(或nil),然后调用NSLinguisticTagger
方法或枚举TagsInRange:scheme:options:usingBlock:
。
结论:我表示我没用过,一次都没有。
二、- (NSArray<NSString *> *)linguisticTagsInRange:(NSRange)range scheme:(NSString *)tagScheme options:(NSLinguisticTaggerOptions)opts orthography:(NSOrthography *)orthography tokenRanges:(NSArray<NSValue *> * _Nullable *)tokenRanges;
该方法的作用就是:返回接收字符串中指定范围和请求的标签的语言标签数组。
下面我们看一下参数和返回值:
-
range
:要分析字符串的区间。 -
tagScheme
:要使用的标签方案。 请参阅支持值的语言标签方案。 -
opts
:使用的语言标签选项。 请参阅NSLinguisticTaggerOptions
的常量。 这些常数可以使用C位按OR运算符进行组合。这个枚举值前面已经给出了,这里就不多说了。 -
orthography
:字符串的正字法。 如果没有,语言标签将尝试从字符串内容中确定正字法。 -
tokenRanges
:由引用返回的数组,包含包含在NSValue对象中的语言标签的令牌范围。 -
return
:返回一个包含接收字符串中tokenRanges的语言标签的数组。
下面我们还要注意:
- 这是一种方便的方法。 它相当于创建一个
NSLinguisticTagger
的实例,将接收者指定为要分析的字符串,以及正字法(或nil),然后调用NSLinguisticTagger
方法或linguisticTagsInRange:scheme:options:orthography:tokenRanges:
。
结论:我表示我没用过,一次都没有。
后记
关于
NSString
类的知识就此完结了,希望大家能批评指正,能帮助到大家,喜欢的别忘记喜欢和关注哦!!!!