String类的常用方法

2019-08-26 06:20:24来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

String类的常用方法

String类常用的构造方法

  1、String(byte[] bytes) 通过使用平台的默认字符集解码指定的 byte 数组,构造一个新的 String

  2、String(char[] value) 分配一个新的 String,使其表示字符数组参数中当前包含的字符序列。

  3、String(char[] value, int offset, int count) 分配一个新的 String,它包含取自字符数组参数一个子数组的字符。

  4、String(StringBuffer buffer) 分配一个新的字符串,它包含字符串缓冲区参数中当前包含的字符序列。

String类的常用方法

  1、public char charAt(int index) 返回指定索引处的 char 值。

  2、public int length()  返回字符串的长度

  3、public int indexOf()  返回指定子字符串在此字符串中第一次出现处的索引。  

  4、public int lastIndexOf(int ch, int fromIndex)  返回字符串从fromIndex开始第一次出现str的位置。

  5、public boolean equalsIgnoreCase(String anotherString)  比较两个字符串是否相等,忽略大小写。

  6、public String replace(char oldChar, char newChar) 返回一个新的字符串,它是通过用 newChar 替换此字符串中出现的所有 oldChar 得到的。

  7、public boolean startsWith(String prefix) 判断字符串是否以prefix字符串开头。

  8、public boolean endsWith(String suffix) 判断一个字符串是否以suffix字符串结尾。

  9、public String toUpperCase()  返回一个字符串为该字符串的大写形式。

  10、public String toLowerCase()  返回一个字符串为该字符串的小写形式。

  11、public String substring(int beginIndex) 返回该字符串从beginIndex开始到结尾的子字符串。

  12、public String substring(int beginIndex,int endIndex) 返回该字符串从beginIndex开始到endsIndex结尾的子字符串

  13、public String trim() 返回该字符串去掉开头和结尾空格后的字符串

  14、public String[] split(String regex) 将一个字符串按照指定的分隔符分隔,返回分隔后的字符串数组

  

  仅供自己查阅

 

 


原文链接:https://www.cnblogs.com/guyuangang/p/11391391.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:JVM学习笔记(一)---JVM内存区域划分

下一篇:Spring Boot: 配置文件详解