String s ="HelloWorld";
  char a = s.charAt(3);
  System.out.println(a);
  //找到s字符串中第三个元素所指定的字符

  int b = s.codePointBefore(1);
  System.out.println(b);
  //找到s字符串中第一个元素所指定的字符的Unicode码

  String y=s.toUpperCase();
  System.out.println(y);
  //将y字符串中每个字符转化为大写

  String ss= s.substring(3, 7);
  System.out.println(ss);
  //求s字符串中第三个元素到第七个元素的子串

  int h = s.indexOf("lo", 0);
  System.out.println(h);
  //s字符串中从第零个下标查找,找到字符串"lo"子串的位置

  String x ="linjiaqi";
  int c = s.compareTo(x);
  System.out.println(c);
  //比较s字符串和x字符串的大小

  String w = s.concat(x);
  System.out.println(w);
  //将x字符串连接到s后面

  String k ="THE:WORLD:IS:MINE";
  String [] t = k.split(":");
  for(int i=0;i<t.length;i++){
   System.out.println(t[i]);
  }
  //将k字符串中指定的字符":"去掉

  String j =k.toLowerCase();
  System.out.println(j);
  //将j字符串中每个字符转化为小写

  String q ="  heal the world   ";
  String qq= q.trim();
  System.out.println(qq);
  //去掉q字符串中前导空格和尾部空格