如何计算 TextView 中的字数 Android Studio
How to count word in TextView Android Studio
假设在我的应用程序中有两个文本视图,第一个名称是 ViewText
,第二个名称是 WordCount
。
我想在 ViewText
中显示一些文本,而 WordCount
显示 ViewText
中的字数。
如何在 Android Studio 的 textview 中计算字数?
试试这个
val words = "Hi this is sentence for counting words"
var totalCount = words.split("\s+".toRegex()).size
println(totalCount)
假设在我的应用程序中有两个文本视图,第一个名称是 ViewText
,第二个名称是 WordCount
。
我想在 ViewText
中显示一些文本,而 WordCount
显示 ViewText
中的字数。
如何在 Android Studio 的 textview 中计算字数?
试试这个
val words = "Hi this is sentence for counting words"
var totalCount = words.split("\s+".toRegex()).size
println(totalCount)