lastIndexOf() 方法有以下四种形式: public int lastIndexOf(int ch): 返回指定字符在此字符串中最后一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。 public int lastIndexOf(int ch, in...
length() 方法用于返回字符串的长度。 空字符串的长度返回 0。 语法 public int length() 参数 无 返回值 返回字符串长度。 实例 以下实例演示了 length() 方法的使用: 实例 public class Test { p...
matches() 方法用于检测字符串是否匹配给定的正则表达式。 调用此方法的 str.matches(regex) 形式与以下表达式产生的结果完全相同: Pattern.matches(regex, str) 语法 public boolean matches(String regex...
regionMatches() 方法用于检测两个字符串在一个区域内是否相等。 语法 public boolean regionMatches(int toffset, String other, int ooffset, int len)或public boolean regionMatches(boolean ignoreCase, int toffset, String o...
regionMatches() 方法用于检测两个字符串在一个区域内是否相等。 语法 public boolean regionMatches(int toffset, String other, int ooffset, int len)或public boolean regionMatches(boolean ignoreCase, int toffset, String o...
replace() 方法通过用 newChar 字符替换字符串中出现的所有 searchChar 字符,并返回替换后的新字符串。 语法 public String replace(char searchChar, char newChar) 参数 searchChar -- 原字符。 newChar -- 新字...
replaceAll() 方法使用给定的参数 replacement 替换字符串所有匹配给定的正则表达式的子字符串。 语法 public String replaceAll(String regex, String replacement) 参数 regex -- 匹配此字符串的正则表达式。...
replaceFirst() 方法使用给定的参数 replacement 替换字符串第一个匹配给定的正则表达式的子字符串。 语法 public String replaceFirst(String regex, String replacement) 参数 regex -- 匹配此字符串的正则表...
split() 方法根据匹配给定的正则表达式来拆分字符串。 注意: . 、 $ 、 | 和 * 等转义字符,必须得加 \\ 。 注意: 多个分隔符,可以用 | 作为连字符。 语法 public String[] split(String regex...
split() 方法根据匹配给定的正则表达式来拆分字符串。 注意: . 、 $ 、 | 和 * 等转义字符,必须得加 \\ 。 注意: 多个分隔符,可以用 | 作为连字符。 语法 public String[] split(String regex...