java 字符串截取
Posted sunseeker
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 字符串截取相关的知识,希望对你有一定的参考价值。
我们经常配套使用substring和indexof来配套截取字符串。
1.substring:(左闭右开)
String.substring(int beginIndex)或者
String.substring(int beginIndex, int endIndex)
参数
-
beginIndex -- 起始索引(包括), 索引从 0 开始。
-
endIndex -- 结束索引(不包括)。
2.indexof:(有四种方法,下面就写了一种,其他百度)
String.indexOf(\',\',从第几个位置再找!);//返回int
String. indexOf(","); 得到的是4,
String.indexOf(\',\',4);得到的就是8
下一个就是indexOf(\',\',8)
3.例子如下
String beginMonth = month.substring(0, month.indexOf("月")+1);//截取从0位置开始,到字符‘月’结束的字符串
String endMonth = month.substring(month.indexOf("- ")+1).trim();//截取从字符‘-’位置开始的字符串
以上是关于java 字符串截取的主要内容,如果未能解决你的问题,请参考以下文章