字符串学习
1.定义
- 概念:零个或多个字符的序列称为字符串。
- 注意:1>字符串文字不能分成两行。
2>如果声明字符串却没赋值,就好会报错。显示未被初始化。
2.常用方法
- s.lendsWith(".jpg")判断字符串是否以.jpg结尾
- s.length();求字符串长度
3.使用场景
- 提取字符数组中的值(从String创建的字符串中提取两个字符)
[图片上传失败...(image-eb12e8-1542522672705)]
-
对字符串中值进行替换(replaceAll)
提取字符串中的字符(subString)
![MSTM]C_}`)OLM1D_5~JST4.jpg
- 字符串数组中的查询方法(contains(查询是否有关键词,有ture,没有false))
![7MD]@}NVHT@Q}P2M{{0F7XY.jpg](https://upload-images.jianshu.io/upload_images/14956520-8a4087bbcbe78a00.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
- 字符串数组中的拼接方法(concat)
- 获取字符串长度( String num(简单判断信息长度))
- 获取指定位置字符(charAt)
-
判断字符串首尾内容(startWith endWith(用于检验非法信息))
-
替换字符串中字符(replace(错别字修改))
分隔数组(split)
![4BCMICVY1AT)`W]L]$0CNQ7.jpg](https://upload-images.jianshu.io/upload_images/14956520-1ae693e5ba5b2c18.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)去除空格(trim)
![L1(]G1UE_Q_I{EOW{7W%Y27.jpg](https://upload-images.jianshu.io/upload_images/14956520-1a721a70ac8e8c16.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)-
大小写替换(toLowerCase toUpperCase)