方法名 | 描述 | 返回值 | 写法 |
---|---|---|---|
length | 返回字符串的长度 | int | length() |
charAt | 取指定位置的字符 | char | charAt(int index) |
isEmpty( | 判断字符串是否为空 | boolean | isEmpty() |
toLowerCase | 转成小写 | String | toLowerCase() |
toUpperCase | 转成大写 | String | toUpperCase() |
trim | 去除首尾的空白 | String | trim() |
equals | 比较字符串是否相等 | boolean | equals() |
equalsIgnoreCase | 忽略大小写判断是否相等 | boolean | equalsIgnoreCase() |
concat | 拼接字符串 | String | concat() |
compareTo | 比较字符串大小 如果小于0则前面小 等于0则相等 | int | compareTo() |