| Added Methods |
boolean contentEquals(StringBuffer)
|
Returns true if and only if this String represents the same sequence of characters as the specified StringBuffer. |
boolean matches(String)
|
Tells whether or not this string matches the given regular expression. |
String replaceAll(String, String)
|
Replaces each substring of this string that matches the given regular expression with the given replacement. |
String replaceFirst(String, String)
|
Replaces the first substring of this string that matches the given regular expression with the given replacement. |
String[] split(String)
|
Splits this string around matches of the given regular expression. |
String[] split(String, int)
|
Splits this string around matches of the given regular expression. |
CharSequence subSequence(int, int)
|
Returns a new character sequence that is a subsequence of this sequence. |