TextUtils
Posted wikiki
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TextUtils相关的知识,希望对你有一定的参考价值。
/** * 计算关键字在文本中出现的次数 * @param text * @param key * @return */ public static int count(String text, String key) { int count = 0, start = 0; while ((start = text.indexOf(key, start)) >= 0) { start += key.length(); count++; } return count; }
以上是关于TextUtils的主要内容,如果未能解决你的问题,请参考以下文章
android.text.TextUtils不常用的方法笔记