String

package com.API;

import java.util.Scanner;

public class TestString {
public static void main(String[] args) {
// String s = "你好啊。赛丽亚";
// System.out.println(s.charAt(0));
// s.concat("哈哈");
// System.out.println(s);//字符串是不可变的数据类型
// String s1 = s.concat("haha");
// System.out.println(s1);
// //判断以XXX结尾
// System.out.println("赛丽亚回家".endsWith("回家"));
// System.out.println("赛丽亚回家".startsWith("回家")); //判断以XXX开头
// //忽略大小写
// //验证码
// String code = "sjdk";
// System.out.println( "请输入验证码");
// Scanner s2 = new Scanner(System.in);
// String in = s2.next();
// if (code.equalsIgnoreCase(in)){//判断左右两端忽略大小写的时候是否一致
// System.out.println("ok");
// }else{
// System.out.println("no相等");
// }
// String you = "你好啊";
// System.out.println(you.indexOf("啊"));
// //length
// //换
// String s5 = " 附加费收到了";
// String s6 = s5.replace("附加费","是对的");
// System.out.println(s6);
//字符串数组 切割 split
String s = "hah_xixi_lele";
String[] s1 = s.split("_");
System.out.println(s1[0]);
System.out.println(s1[1]);
System.out.println(s1[2]);

}
}
posted @ 2022-05-13 11:26  小松2739  阅读(40)  评论(0编辑  收藏  举报