java.lang.string 1.0
-
char charAt(int index)
返回给定位置的代码单元。
- int codePointAt(int index)5.0
返回从给定位置开始的代码点。
- int offsetByCodePoints(int startIndex, int cpCount)5.0
返回从startIndex代码点开始,位移cpCount后的码点索引。
- int compareTo(String other)
按照字典顺序,如果字符串位于other之前,返回一个负数;如果字符串位于other之后,返回一个正数;如果两个字符串相等,返回0。
- IntStream codePoints()8
将这个字符串的码点作为一个流返回。调用toArray将它们放在一个数组中。
- new String(int codePoints[], int offset, int count) 5.0
用数组中从offset开始的Count个码点构成一个字符串。
- boolean equals(Pbject other)
如果字符串与other相等,返回true。
- boolean equalsIgnoreCase(String other)
如果字符串与other相等(忽略大小写),返回true。
- boolean startsWith(String prefix)
- boolean endsWith(String suffix)
如果字符串以suffix开头或结尾,则返回true。
- int indexOf(String str)
- int intdexOf(String str, int fromIndex)
- int indexOf(int cp)
- int indexOf(int cp, int fromIndex)
返回与字符串str或代码点cp匹配的第一个子串的开始位置。这个位置从索引0或fromIndex开始计算。如果在原始串中不存在str,返回-1.
- int lastIndexOf(String str)
- int lastIndexOf(String str, int fromIndex)
- int lastIndexOf(int cp)
- int lasrIndexOf(int cp, int fromIndex)
返回与字符串str或代码点cp匹配的最后一个子串的开始位置。这个位置从原始串尾端或fromIndex开始计算。
- int length()
返回字符串的长度。
- int codePointCount(int startIndex, int endIndex)
返回startIndex与endIndex-1之间的代码点数量。
- String replace(CharSequence oldString, CharSequence newString)
返回一个新字符串。可以用String或StringBuilder对象作为CharSequence参数。
- String subString(int beginIndex)
- String subStirng(int beginIndex, int endIndex)
返回一个新字符串。这个字符串包含原始字符串中从beginIndex到串尾货endIndex-1的所有代码单元
- String toLowerCase()
- String toUpperCase()
返回一个新字符串。这个字符串将原始字符串中的大(小)写字母改为小(大)写。
- String trim()
返回一个新字符串。这个字符串将删除了原始字符串头部和尾部的空格。
- String join(CharSequence delimiter, CharSequence...elements)
返回一个新字符串,用给定的定界符连接所有元素。