博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android开发_字符串处理类-TextUtils类
阅读量:6669 次
发布时间:2019-06-25

本文共 885 字,大约阅读时间需要 2 分钟。

       对于字符串处理Android为我们提供了一个简单实用的TextUtils类,如果处理比较简单的内容不用去思考正则表达式不妨试试这个在android.text.TextUtils的类,主要的功能如下:

  是否为空字符 static boolean  isEmpty(CharSequence str) 

 拆分字符串  public static String[] split (String text, String expression) ,Android开发网提示大家仔细看例子如下 String.split() returns [''] when the string to be split is empty. This returns []. This does not remove any empty strings from the result. For example split("a,", "," ) returns {"a", ""}.

 拆分字符串使用正则 public static String[] split (String text, Pattern pattern)

  确定大小写是否有效在当前位置的文本TextUtils.getCapsMode(CharSequence cs, int off, int reqModes)

  使用HTML编码这个字符串  static String  TextUtils.htmlEncode(String s)   

 

if (!TextUtils.isEmpty(spUtil.getUserId())) {
Intent intent = new Intent(WelcomeActivity.this, MainActivity.class); startActivity(intent); } else { startActivity(new Intent(WelcomeActivity.this, FirstSetActivity.class)); }

 

 

转载地址:http://pnlxo.baihongyu.com/

你可能感兴趣的文章
posix多线程有感--自旋锁
查看>>
静态库中如何包含资源文件
查看>>
NOIP2014 提高组 Day2——寻找道路
查看>>
设置Sysctl.conf用以提高Linux的性能(最完整的sysctl.conf优化方案)
查看>>
tp路由+伪静态+去掉index.php
查看>>
R.I.P. PK
查看>>
今日晚餐:姹紫嫣红阳春面
查看>>
【转载】使用铁哥SmartFlash快速开发方案:66行代码搞定抽奖程序!
查看>>
Map<key,value>泛型get(key)值为null问题解决
查看>>
ZendFramework学习第一章
查看>>
40种网页小技巧
查看>>
PHP 乱码解决方面
查看>>
在Linux中一个网卡绑定多个IP设定
查看>>
Ural 1519 Formula 1 (插头DP)
查看>>
c++动态链接库函数转换为C#函数
查看>>
Mageia 3 Alpha 2 发布,Mandriva 分支
查看>>
poj3994
查看>>
vim中的复制与粘贴 | WangYan BLog
查看>>
android.database.sqlite.SQLiteException: table TB_READ_PERIOD already exists
查看>>
Nginx 1.2.5 稳定版发布
查看>>