trim():截取字符串前后的空格
example:
String s = " ss s "
String s1 = s.trim()
System.out.println(s1)------------------->ss s
indexOf():返回的是匹配的字符串的索引位置。
trim():截取字符串前后的空格
example:
String s = " ss s "
String s1 = s.trim()
System.out.println(s1)------------------->ss s
indexOf():返回的是匹配的字符串的索引位置。