package changYongLei;
public class TiQu_LianJie_TiHuan_String {
  public static void main(String[] args) {
//   charAt(int index) 返回指定索引处的 char 值。-----char
//   索引是由0开始的,必须是非负数
   String s1 = "student can study";
   String s2 = "   hhhhhhh";


//   substring(int beginIndex) 返回一个新的字符串,它是此字符串的一个子字符串。----String
//   该方法用于提取从位置索引开始的字符串部分
   System.out.println(s1.substring(5));


//   substring(int beginIndex, int endIndex) 返回一个新字符串,它是此字符串的一个子字符串。---String
//   该方法用于提取beginIndex到endIndex位置之间的字符串部分
//   在Java中,输出的包括beginIndex位置上的字符,但不包括endIndex位置上的字符
   System.out.println(s1.substring(0,4));


//   concat(String str) 将指定字符串连接到此字符串的结尾。------String
//   该方法用于连接两个字符串,并创建一个包含调用字符串的String对象
   System.out.println(s1.concat("  Really"));
   System.out.println(s1.concat(s2));


//   replace(CharSequence target, CharSequence replacement) 使用指定的字面值替换序列替换此字符串所有匹配字面值目标序列的子字符串。
//   即:String replace(CharSequence oldstr, CharSequence newstr) ------ String
//   返回一个新的字符串,它是通过用newstr替换此字符串中出现的所有oldstr得到的
   System.out.println(s1.replace("ent can","dooood"));


//   replace(char oldChar, char newChar) 返回一个新的字符串,它是通过用 newChar 替换此字符串中出现的所有 oldChar 得到的。-----String
   System.out.println(s1.replace('s','P'));


//   String[] split(String regex) 根据参数regex(regex是一个正则表达式,用来限定分隔规则)将字符串分割为若干个子字符串-----String[]
   String[] s =  s1.split(" ");//以空格对s1进行分割
   System.out.println(s.length);//对s1分割后,s数组的长度
   for(int i=0;i<s.length;i++)
   System.out.println(s[i]);
//   注意:. + * $ \不能单独作为分隔符     对于.可以用\\.进行分割


//   trim() 返回字符串的副本,忽略前导空白和尾部空白。它去除了原字符串首尾的空格-----String
   System.out.println(s2.trim());
  }
}

如何读取多个字符java java读取string单个字符_子字符串