Java String substring(int beginIndex, int endIndex)方法具有什么功能呢?

Java教程王 Java教程 发布时间:2021-04-08 16:11:19 阅读数:5263 1

String substring(int beginIndex, int endIndex)方法的功能:

      substring(int beginIndex, int endIndex)方法:用于截取字符串指定索引区间上的字符信息

语法

         public String substring(int beginIndex, int endIndex)

参数

  • beginIndex: 截取开头索引(返回字符串包含此位置)
  • endIndex:结束索引(返回字符串不包含此位置)

返回值

  • 返回beginIndex和endIndex索引区间的字符串信息

public class testClass {

    public static void main(String args[]) {
        String Str = new String("Welcome to java265.com");
 
        System.out.println(Str.substring(11, 18));

    }
}
/*
以上代码运行后,将输出以下信息

java265

*/
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaCourse/180.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者