整理一下平时写代码用到的方法或者新学的方法,就当是个个工具箱,以后省的自己定义工具类。持续更新中…
文章目录
- 1、substring() 方法
- 2、hasText()方法
1、substring() 方法
Java中String类自带的方法。
- 作用:
返回字符串的子字符串 - 用法:
public String substring(int beginIndex)/和public String substring(int beginIndex, int endIndex)
- 参数:
。beginIndex – 起始索引(包括), 索引从 0 开始
。endIndex – 结束索引(不包括)。
2、hasText()方法
org.springframework.util 包下的 StringUtils 工具类下的静态方法。
作用:
字符串不是 null ,且不为空,且是空白字符时,返回true。否则false用法:
/空白符包含:空格、tab键、换行符System.out.println(StringUtils.hasText("")); //falseSystem.out.println(StringUtils.hasText(" ")); //falseSystem.out.println(StringUtils.hasText(null)); //falseSystem.out.println(StringUtils.hasText("java")); //true
- 源码: