立即学习:https://edu.csdn.net/course/play/27274/361060?utm_source=blogtoedu
s1.concat(s2) = s1+s2
字符串常用方法,更多可查看官方文档。
1.String.format("%d", age)格式化
(name.length())
2.charAt s.charAt(第几位)
3.length
4.substring s.substring(从第几位开始)
- (x)
- (x, y)
5.trim: s.trim 去掉两边的所有空格
6.indexOf 返回起始位置
- s.indexOf('l')
- s.indexOf("字符串 ")