`
dengkehai
  • 浏览: 79130 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Java中String类的常用方法

    博客分类:
  • java
阅读更多
public char charAt(int index)
  返回字符串中第index个字符;
public int length()
  返回字符串的长度;
public int indexOf(String str)
  返回字符串中第一次出现str的位置;
public int indexOf(String str,int fromIndex)
  返回字符串从fromIndex开始第一次出现str的位置;
public boolean equalsIgnoreCase(String another)
  比较字符串与another是否一样(忽略大小写);
public String replace(char oldchar,char newChar)
  在字符串中用newChar字符替换oldChar字符
public boolean startsWith(String prefix)
  判断字符串是否以prefix字符串开头;
public boolean endsWith(String suffix)
  判断一个字符串是否以suffix字符串结尾;
public String toUpperCase()
  返回一个字符串为该字符串的大写形式;
public String toLowerCase()
  返回一个字符串为该字符串的小写形式
public String substring(int beginIndex)
  返回该字符串从beginIndex开始到结尾的子字符串;
public String substring(int beginIndex,int endIndex)
  返回该字符串从beginIndex开始到endsIndex结尾的子字符串
public String trim()
  返回该字符串去掉开头和结尾空格后的字符串
public String[] split(String regex)
  将一个字符串按照指定的分隔符分隔,返回分隔后的字符串数组
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics