如何使用 Java 从字符串中提取特定子字符串?


您可以使用 String 类的 substring() 方法从 String 中提取子字符串,为此方法,您需要传递所需子字符串的开始和结束索引。

示例

在线演示

public class Substring {
   public static void main(String args[]) {

      String str = "Welcome to Tutorialspoint";
      String sub = str.substring(10, 25);
      System.out.println(sub);
   }
}

输出

Tutorialspoint

更新于:20-Feb-2020

9K+ 浏览次数

开启您的职业生涯

完成课程获得认证

开始
广告