- int indexOf(int ch, int fromIndex) 方法
int indexOf(int ch, int fromIndex): 返回指定字符在字符串中第一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。
- int indexOf(int ch) 方法
int indexOf(int ch): 返回指定字符在字符串中第一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。
- int indexOf(String str, int fromIndex) 方法
int indexOf(String str, int fromIndex): 返回指定字符在字符串中第一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。
- int indexOf(String str) 方法
int indexOf(String str): 返回指定字符在字符串中第一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。
- int lastIndexOf(int ch, int fromIndex) 方法
int lastIndexOf(int ch, int fromIndex): 返返回指定字符在此字符串中最后一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。
- int lastIndexOf(int ch) 方法
int lastIndexOf(int ch): 返回指定字符在此字符串中最后一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。
- int lastIndexOf(String str, int fromIndex) 方法
int lastIndexOf(String str, int fromIndex): 返回指定字符在此字符串中最后一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。
- int lastIndexOf(String str) 方法
int lastIndexOf(String str): 返回指定字符在此字符串中最后一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。
- Java charAt() 方法
charAt() 方法用于返回指定索引处的字符。索引范围为从 0 到 length() - 1。
- Java compareTo() 方法
compareTo() 方法用于两种方式的比较:字符串与对象进行比较、按字典顺序比较两个字符串。
- Java compareToIgnoreCase() 方法
compareToIgnoreCase() 方法用于按字典顺序比较两个字符串,不考虑大小写。
- Java concat() 方法
concat() 方法用于将指定的字符串参数连接到字符串上。
- Java contentEquals() 方法
contentEquals() 方法用于将将此字符串与指定的 StringBuffer 比较。
- Java endsWith() 方法
endsWith() 方法用于测试字符串是否以指定的后缀结束。
- Java equals() 方法
equals() 方法用于将字符串与指定的对象比较。
- Java equalsIgnoreCase() 方法
equalsIgnoreCase() 方法用于将字符串与指定的对象比较,不考虑大小写。
- Java getBytes() 方法
getBytes() 方法有两种形式:getBytes(String charsetName) 和 getBytes()。
- Java getChars() 方法
getChars() 方法将字符从字符串复制到目标字符数组。
- Java hashCode() 方法
hashCode() 方法用于返回字符串的哈希码。
- Java int length() 方法
length() 方法用于返回字符串的长度。
- Java matches() 方法
matches() 方法用于检测字符串是否匹配给定的正则表达式。
- Java regionMatches() 方法
regionMatches() 方法用于检测两个字符串在一个区域内是否相等。
- Java replace() 方法
replace() 方法通过用 newChar 字符替换字符串中出现的所有 oldChar 字符,并返回替换后的新字符串。
- Java replaceAll() 方法
replaceAll() 方法使用给定的参数 replacement 替换字符串所有匹配给定的正则表达式的子字符串。
- Java replaceFirst() 方法
replaceFirst() 方法使用给定的参数 replacement 替换字符串第一个匹配给定的正则表达式的子字符串。
- Java split() 方法
split() 方法根据匹配给定的正则表达式来拆分字符串。
- Java startsWith() 方法
startsWith() 方法用于检测字符串是否以指定的前缀开始。
- Java subSequence() 方法
startsWith() 方法返回一个新的字符序列,它是此序列的一个子序列。
- Java substring() 方法
substring() 方法返回字符串的子字符串。
- Java toCharArray() 方法
toCharArray() 方法将字符串转换为字符数组。
- Java toLowerCase() 方法
toLowerCase() 方法将字符串转换为小写。
- Java toString() 方法
toString() 方法返回此对象本身(它已经是一个字符串)。
- Java toUpperCase() 方法
toUpperCase() 方法将字符串小写字符转换为大写。
- Java trim() 方法
trim() 方法用于删除字符串的头尾空白符。
- Java valueOf() 方法
static String valueOf() 方法:返回指定参数的字符串表示形式。
- static String copyValueOf(char[] data, int offset, int count) 方法
static String copyValueOf(char[] data, int offset, int count): 返回指定数组中表示该字符序列的字符串。
- static String copyValueOf(char[] data) 方法
static String copyValueOf(char[] data): 返回指定数组中表示该字符序列的字符串。
- String intern()
intern() 方法返回字符串对象的规范化表示形式。