substring()方法是java String类的常用方法,作用是返回字符串的子字符串。
1.substring(int beginIndex)方法:
beginIndex是起始索引值(包括),从0开始。该方法将字符串从beginIndex位置开始截取,一直到字符串末尾。
示例:文章来源:https://www.toymoban.com/news/detail-542412.html
public class test1 {
public static void main(String[] args) {
String test_str = "0123456789";
System.out.println(test_str.substring(3));
}
}
输出:
3456789
2.substring(int beginIndex, int endIndex)方法:
beginIndex是起始索引值(包括),从0开始,endIndex是结束索引值(不包括)。该方法将字符串从beginIndex位置开始截取到endIndex-1位置处结束。
示例:
public class test1 {
public static void main(String[] args) {
String test_str = "0123456789";
System.out.println(test_str.substring(3, 6));
}
}
输出:文章来源地址https://www.toymoban.com/news/detail-542412.html
345
到了这里,关于Java使用substring()方法截取字符串的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!