Java中提取字符串的函数有substring。
  public String substring(int beginIndex, int endIndex)截取从beginInsex位置开始到endIndex-1结束的字符串,返回值是字符串。特别要注意的是这个方法全部都是小写,没有用驼峰记法。

String str = "wang";
System.out.println(str.substring(1,3));//返回字符串”an”

  字符串提取函数substring结合查找函数indexOf可以提取字符串中指定的字符串。