码迷,mamicode.com
首页 > 其他好文 > 详细

27 string类中常用的方法列表

时间:2018-04-23 00:14:24      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:其他   count   应用   The   越界   boolean   replace   val   去除   

1. 获取方法

  int   length()          获取字符串的长度

  char  charAt(int index)    获取特定位置的字符 (角标越界)

  int   indexOf(String str)   获取特定字符的位置(overload)

  int   lastIndexOf(int ch)   获取最后一个字符的位置

 

2. 判断方法

  boolean   endsWith(String str)             是否以指定字符结束

  boolean   isEmpty()                 是否长度为0 如:“” null V1.6

  boolean   contains(CharSequences)           是否包含指定序列 应用:搜索

  boolean   equals(Object anObject)           是否相等

  boolean   equalsIgnoreCase(String anotherString)    忽略大小写是否相等

 

 

3.  转换方法

        String(char[] value)              将字符数组转换为字符串

        String(char[] value, int offset, int count)

  Static     String valueOf(char[] data)

  static     String valueOf(char[] data, int offset, int count)

  char[]       toCharArray()                  将字符串转换为字符数组

 

4.  其他方法

  String   replace(char oldChar, char newChar)   替换

  String[]   split(String regex)             切割

  String     substring(int beginIndex)

  String     substring(int beginIndex, int endIndex)      截取字串

  String     toUpperCase()                                            转大写

  String     toLowerCase()                                            转小写

  String     trim()                                                           去除空格

 

27 string类中常用的方法列表

标签:其他   count   应用   The   越界   boolean   replace   val   去除   

原文地址:https://www.cnblogs.com/zjdbk/p/8910263.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!