public class stringmethodtest {
替换:
string replace(char oldchar, char newchar):返回一个新的字符串,它是通过用 newchar 替换此字符串中出现的所有 oldchar 得到的。
string replace(charsequence target, charsequence replacement):使用指定的字面值替换序列替换此字符串所有匹配字面值目标序列的子字符串。
string replaceall(string regex, string replacement):使用给定的 replacement 替换此字符串所有匹配给定的正则表达式的子字符串。
string replacefirst(string regex, string replacement):使用给定的 replacement 替换此字符串匹配给定的正则表达式的第一个子字符串。
匹配:
boolean matches(string regex):告知此字符串是否匹配给定的正则表达式。
切片:
string[] split(string regex):根据给定正则表达式的匹配拆分此字符串。
string[] split(string regex, int limit):根据匹配给定的正则表达式来拆分此字符串,最多不超过limit个,如果超过了,剩下的全部都放到最后一个元素中。
boolean endswith(string suffix):测试此字符串是否以指定的后缀结束
boolean startswith(string prefix):测试此字符串是否以指定的前缀开始
boolean startswith(string prefix, int toffset):测试此字符串从指定索引开始的子字符串是否以指定前缀开始
boolean contains(charsequence s):当且仅当此字符串包含指定的 char 值序列时,返回 true
int indexof(string str):返回指定子字符串在此字符串中第一次出现处的索引
int indexof(string str, int fromindex):返回指定子字符串在此字符串中第一次出现处的索引,从指定的索引开始
int lastindexof(string str):返回指定子字符串在此字符串中最右边出现处的索引
int lastindexof(string str, int fromindex):返回指定子字符串在此字符串中最后一次出现处的索引,从指定的索引开始反向搜索
注:indexof和lastindexof方法如果未找到都是返回-1
int length():返回字符串的长度: return value.length
char charat(int index): 返回某索引处的字符return value[index]
boolean isempty():判断是否是空字符串:return value.length == 0
string tolowercase():使用默认语言环境,将 string 中的所有字符转换为小写
string touppercase():使用默认语言环境,将 string 中的所有字符转换为大写
string trim():返回字符串的副本,忽略前导空白和尾部空白
boolean equals(object obj):比较字符串的内容是否相同
boolean equalsignorecase(string anotherstring):与equals方法类似,忽略大小写
string concat(string str):将指定字符串连接到此字符串的结尾。 等价于用“+”
int compareto(string anotherstring):比较两个字符串的大小
string substring(int beginindex):返回一个新的字符串,它是此字符串的从beginindex开始截取到最后的一个子字符串。
string substring(int beginindex, int endindex) :返回一个新字符串,它是此字符串从beginindex开始截取到endindex(不包含)的一个子字符串。
// system.out.println(s1.charat(10));
// s1 = "";
system.out.println(s1.isempty());
}