java常用字符串操作

字符串相等

使用equals判断字符串值相等, ==比较内存地址相等

if(str.equals(str2)){

}

字符串拆分split

特殊字符 * ^ : | . \ 需要使用双反 \ \

String[] arr=str.split(",");