Error[8]: Undefined offset: 3, File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 121
File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 473, decode(

概述参见英文答案 > Number of words in a Swift String for word count calculation                                    4个 编辑:已经存在类似于此问题的问题,但它是由特定字符分隔的数字( Get no. Of words in swift for average calculator).相反,这个问题是要获 参见英文答案 > Number of words in a Swift String for word count calculation4个
编辑:已经存在类似于此问题的问题,但它是由特定字符分隔的数字( Get no. Of words in swift for average calculator).相反,这个问题是要获得文本中真实单词数量,以各种方式分开:换行符,一些换行符,一个空格,一个空格等.

我想用Swift 3获取字符串中的单词数.

我正在使用这段代码,但是得到了不精确的结果,因为数字是计算空格和新行而不是有效字数.

let str = "Architects and city planners,are  \ndesigning buildings to create  a better quality of life in our urban    areas."// 18 words,21 spaces,2 lineslet components = str.components(separatedBy: .whitespacesAndNewlines)let a = components.countprint(a)// 23 instead of 18
连续的空格和换行不会合并到一个通用的空白区域中,所以你只是在连续的空白字符之间得到一堆空的“单词”.通过过滤掉空字符串来摆脱这种情况:
let components = str.components(separatedBy: .whitespacesAndNewlines)let words = components.filter { !
let chararacterSet = CharacterSet.whitespacesAndNewlines.union(.punctuationCharacters)let components = str.components(separatedBy: chararacterSet)let words = components.filter { ![+++].isEmpty }print(words.count)  // 18
.isEmpty }print(words.count) // 17

以上将打印17因为您没有包含,作为分隔字符,所以字符串“planners,are”被视为一个单词.

您也可以通过向分隔符集添加标点字符来打破该字符串,如下所示:

[+++]

现在你会看到像你期望的那样数到18.

总结

以上是内存溢出为你收集整理的如何在Swift中获取文本中真实单词的数量全部内容,希望文章能够帮你解决如何在Swift中获取文本中真实单词的数量所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

)
File: /www/wwwroot/outofmemory.cn/tmp/route_read.php, Line: 126, InsideLink()
File: /www/wwwroot/outofmemory.cn/tmp/index.inc.php, Line: 165, include(/www/wwwroot/outofmemory.cn/tmp/route_read.php)
File: /www/wwwroot/outofmemory.cn/index.php, Line: 30, include(/www/wwwroot/outofmemory.cn/tmp/index.inc.php)
Error[8]: Undefined offset: 4, File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 121
File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 473, decode(

概述参见英文答案 > Number of words in a Swift String for word count calculation                                    4个 编辑:已经存在类似于此问题的问题,但它是由特定字符分隔的数字( Get no. Of words in swift for average calculator).相反,这个问题是要获 参见英文答案 > Number of words in a Swift String for word count calculation4个
编辑:已经存在类似于此问题的问题,但它是由特定字符分隔的数字( Get no. Of words in swift for average calculator).相反,这个问题是要获得文本中真实单词数量,以各种方式分开:换行符,一些换行符,一个空格,一个空格等.

我想用Swift 3获取字符串中的单词数.

我正在使用这段代码,但是得到了不精确的结果,因为数字是计算空格和新行而不是有效字数.

let str = "Architects and city planners,are  \ndesigning buildings to create  a better quality of life in our urban    areas."// 18 words,21 spaces,2 lineslet components = str.components(separatedBy: .whitespacesAndNewlines)let a = components.countprint(a)// 23 instead of 18
连续的空格和换行不会合并到一个通用的空白区域中,所以你只是在连续的空白字符之间得到一堆空的“单词”.通过过滤掉空字符串来摆脱这种情况:
let components = str.components(separatedBy: .whitespacesAndNewlines)let words = components.filter { !
let chararacterSet = CharacterSet.whitespacesAndNewlines.union(.punctuationCharacters)let components = str.components(separatedBy: chararacterSet)let words = components.filter { !.isEmpty }print(words.count)  // 18
.isEmpty }print(words.count) // 17

以上将打印17因为您没有包含,作为分隔字符,所以字符串“planners,are”被视为一个单词.

您也可以通过向分隔符集添加标点字符来打破该字符串,如下所示:

[+++]

现在你会看到像你期望的那样数到18.

总结

以上是内存溢出为你收集整理的如何在Swift中获取文本中真实单词的数量全部内容,希望文章能够帮你解决如何在Swift中获取文本中真实单词的数量所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

)
File: /www/wwwroot/outofmemory.cn/tmp/route_read.php, Line: 126, InsideLink()
File: /www/wwwroot/outofmemory.cn/tmp/index.inc.php, Line: 165, include(/www/wwwroot/outofmemory.cn/tmp/route_read.php)
File: /www/wwwroot/outofmemory.cn/index.php, Line: 30, include(/www/wwwroot/outofmemory.cn/tmp/index.inc.php)
如何在Swift中获取文本中真实单词的数量_app_内存溢出

如何在Swift中获取文本中真实单词的数量

如何在Swift中获取文本中真实单词的数量,第1张

概述参见英文答案 > Number of words in a Swift String for word count calculation                                    4个 编辑:已经存在类似于此问题的问题,但它是由特定字符分隔的数字( Get no. Of words in swift for average calculator).相反,这个问题是要获 参见英文答案 > Number of words in a Swift String for word count calculation4个
编辑:已经存在类似于此问题的问题,但它是由特定字符分隔的数字( Get no. Of words in swift for average calculator).相反,这个问题是要获得文本中真实单词数量,以各种方式分开:换行符,一些换行符,一个空格,一个空格等.

我想用Swift 3获取字符串中的单词数.

我正在使用这段代码,但是得到了不精确的结果,因为数字是计算空格和新行而不是有效字数.

let str = "Architects and city planners,are  \ndesigning buildings to create  a better quality of life in our urban    areas."// 18 words,21 spaces,2 lineslet components = str.components(separatedBy: .whitespacesAndNewlines)let a = components.countprint(a)// 23 instead of 18
连续的空格和换行不会合并到一个通用的空白区域中,所以你只是在连续的空白字符之间得到一堆空的“单词”.通过过滤掉空字符串来摆脱这种情况:
let components = str.components(separatedBy: .whitespacesAndNewlines)let words = components.filter { !
let chararacterSet = CharacterSet.whitespacesAndNewlines.union(.punctuationCharacters)let components = str.components(separatedBy: chararacterSet)let words = components.filter { !.isEmpty }print(words.count)  // 18
.isEmpty }print(words.count) // 17

以上将打印17因为您没有包含,作为分隔字符,所以字符串“planners,are”被视为一个单词.

您也可以通过向分隔符集添加标点字符来打破该字符串,如下所示:

现在你会看到像你期望的那样数到18.

总结

以上是内存溢出为你收集整理的如何在Swift中获取文本中真实单词的数量全部内容,希望文章能够帮你解决如何在Swift中获取文本中真实单词的数量所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1032214.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存