27 string类中常用的方法列表

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()                                                           去除空格

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

时间: 2024-10-17 14:42:05

27 string类中常用的方法列表的相关文章

String类中常用的方法(重要)

1.字符串与字节 public String(byte[] byte); 将全部字节变成字符串 public String (byte[] byte,int offset,int length) 将部分字节变成字符串 public byte[] getBytes() 将字符串变成字节 public byte[] getBytes(String charsetName) throws Excption 字符串转码操作 public class TestDemo { public static vo

String类中常用的方法

int length(); 返回字符串的长度 public static void main(String[] args){ String str = "HelloWorld!"; int x= str.length(); System.out.println(str+"长度"+x); } char charAt(int index);返回index+1位置的字符 public static void main(String[] args){ String str

String对象中常用的方法

String对象中常用的方法 1.charCodeAt方法返回一个整数,代表指定位置字符的Unicode编码.strObj.charCodeAt(index)说明:index将被处理字符的从零开始计数的编号.有效值为0到字符串长度减1的数字.如果指定位置没有字符,将返回NaN.例如:      var  str = "ABC";      str.charCodeAt(0);结果:652.fromCharCode方法从一些Unicode字符串中返回一个字符串.String.fromCh

java中String类中的replace方法

package stringTest; public class StringDemo2 { public static void main(String[] args) { String s = "acvbb"; String s1 = new String("acvbb"); String s2 = s.replace("a", "X"); String s3 = s1.replace("a", &qu

总结 String、StringBuffer与StringBuilder类中常用的方法

一.String类的常用方法 1 1.获取: 2 1)获取字符串str长度 3 int i = str.length(); 4 2)根据位置(index)获取字符 5 char c = str.charAt(index); 6 3)获取字符在字符串中的位置 7 int i =str.indexOf(char ch); //获取的是第一次出现的位置 8 int i =str.indexOf(char ch ,int index); //从位置index后获取ch出现的第一次的位置 9 int i

String类中的equals()方法

在Java中,每一个对象都有一个地址空间,在这空间保存着这个对象的值. equals 比较的是值,==比较的地址以及值. 01: public class StringExample02: {03: public static void main (String args[])04:   {05: String s0 = "Programming";06: String s1 = new String ("Programming");07: String s2 =

String类的常用判断方法使用练习

选取了一些常用的判断方法进行了使用练习,后续跟新其他方法 package StringDemo; // String类的判断方法解析 // 1:boolean equals(); // 判断字符串是否相等,区分大小写 // 2:boolean equalsIgnoreCase(String anotherString) // 将此 String 与另一个 String 比较,不考虑大小写 // 3.boolean contains(CharSequence s) // 判断字符串对象是否包含指定

String类中的toCharArray()方法

toCharArray()方法  该方法的作用是返回一个字符数组,该字符数组中存放了当前字符串中的所有字符 public class toChar1{ public static void main(String[] args){ String s1=new String("I am Chinese"); char c[]=s1.toCharArray(); System.out.println("the length of c:"+c.length); Syste

object类中常用的方法

Object类方法 Object是所有类的父类,任何类都默认继承Object.Object类到底实现了哪些方法? (1)clone方法 保护方法,实现对象的浅复制,只有实现了Cloneable接口才可以调用该方法,否则抛出CloneNotSupportedException异常. (2)getClass方法 final方法,获得运行时类型. (3)toString方法 该方法用得比较多,一般子类都有覆盖. (4)finalize方法 该方法用于释放资源.因为无法确定该方法什么时候被调用,很少使用