您的位置:首页 > 编程语言 > Java开发

String类常用的方法

2017-09-28 19:08 246 查看
char charAt(int  index)

返回给定位置的代码单元。除非对底层的代码单元感兴趣,否则不需要调用这个方法。

int codePointAt(int index)

返回从给定位置开始或结束的代码点。

int offsetByCodePoints(int startIndex, int cpCount)

返回从startIndex代码点开始,位移cpCount后的代码索引。

int compareTo(String other)

按照字典顺序,如果字符串位于other之前,返回一个负数;如果字符串位于other之后,返回一个正数;如果两个字符串相等,返回0。

boolean endWith(String suffix)

如果字符串以suffix结尾,返回true。

boolean equals(Object other)

如果字符串与other相等,返回true;

boolean equalsIgnoreCase(String other)

如果字符串与other(忽略大小写),返回true。

int indexOf(String str)

int indexOf(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 formIndex)

int lastIndexOf(int cp)

int lastIndexOf(int cp, int fromIndex)

返回与字符串str或代码点cp匹配的最后一个子串的开始位置

int length()

返回字符串的长度。

int codePointCount(int startIndex, int endIndex)

返回startIndex和endIndex-1之间的代码点数量。没有配成对的代用字符将计入代码点。

String replace(CharSequence oldString, charSequence newString)

返回一个新字符串,这个字符串用newString代替原始字符串中所有的oldString。可以用String或StringBuilder对象作为CharSequence参数。

boolean startsWith(String prefix)

如果字符串以prefix字符串开始,返回true。

String substring(int beginIndex)

String substring(int beginIndex, int endIndex)

返回一个新字符串。这个字符串包含原始字符串中从beginIndex到串尾或endIndex-1的所有代码单元。

String toLowerCase()

返回一个新字符串。这个字符串将原始字符串中的所有大写字母改成了小写字母。

String toUpperCase()

返回一个新字符串。这个字符串将原始字符串中的所有小写字母改成了大写字母。

String trim()

返回一个新字符串,这个字符串将删除了原始字符串头部和尾部的空格
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  string java