String 截取字符串方法——subString()
Posted 二师弟&
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了String 截取字符串方法——subString()相关的知识,希望对你有一定的参考价值。
String 截取字符串方法subString()
String可以使用substring方法进行截取字符串有两种,参数可输入一个或者两个:
单参数:public String substring(int beginIndex) ;
双参数:public String substring(int beginIndex, int endIndex) ;
测试代码如下:
/**
* Created with IntelliJ IDEA.
*
* @Author: 江湖@小小白
* @Date: 2022/05/23 11:36
* @Description:
*/
public class Test1
public static void main(String[] args)
//字符串:12345678
String s = "12345678";
//单参数截取:从下标为4开始截取到最后一个字符
String sub1 = s.substring(4);
//双参数截取:从下标0~4的字符
String sub2 = s.substring(0,4);
System.out.println(sub1);
System.out.println(sub2);
结果如下:
以上是关于String 截取字符串方法——subString()的主要内容,如果未能解决你的问题,请参考以下文章