Java substring() 方法

substring() 方法返回字符串的子字符串。

语法

  1. public String substring(int beginIndex)
  2. public String substring(int beginIndex, int endIndex)

参数

  • beginIndex — 起始索引(包括), 索引从 0 开始。

  • endIndex — 结束索引(不包括)。

返回值

子字符串。

实例

  1. public class Test {
  2. public static void main(String args[]) {
  3. String Str = new String("www.baidu.com");
  4. System.out.print("返回值 :" );
  5. System.out.println(Str.substring(4) );
  6. System.out.print("返回值 :" );
  7. System.out.println(Str.substring(4, 9) );
  8. }
  9. }

以上程序执行结果为:

  1. 返回值 :baidu.com
  2. 返回值 :baidu
  3.