字符串

作者: moosoo | 来源:发表于2016-10-10 21:21 被阅读24次

    <h5>String类</h5>

    1、字符串连接

    s1 + s2;
    s1.concat(s2);
    

    2、字符串的比较

    ==:指向同一个地址(看内涵);
    equals():只要值相等(看脸);
    equalsIgnoreCase():忽略大小写相等;
    compareTo():返回不同的字符的ascii码差值,比较的值大返回负数;
    compareToIgnore():忽略大小写的比较;
    startsWith():是否以指定字符(串)开头;
    endsWith():是否以指定字符(串)结尾;
    

    3、字符串搜索

    indexOf(str,start):有两个参数,查找的字符串和开始查找的位置,第二个参数可省略,返回第一个出现的位置;
    lastIndexOf(str,start):有两个参数,查找的字符串和开始查找的位置,第二个参数可省略,返回最后一个出现的位置;
    charAt():对应位置的字符;
    

    4、提取子串

    Substring():返回从给定位置开始到给定的位置结束(若不给出结束位置,视为到字符串末尾)的子串;
    

    5、字符串的转换、替换和分割

    replace():用给定的子串或字符替代字符串对象内指定子串或字符,返回新字符串对象(原字符串不变)�;
    trim():去除字符串对象的前端和尾端空格,返回新字符串对象(原字符串不变);
    split():将字符串根据给定的字符分割;
    toLowerCase():全部转换为小写字母;
    toUpperCase():全部转换为小写字母;
    

    <h5>StringBuilder 类</h5>

    StringBuilder 类非常类似与 String 类。然而你可以改变StringBuilder 对象的内容,可以改变指定的字符,插入字符, 删除字符,执行其他操作。StringBuilder 对象的大小将会根据实际内容变大或者变小。
    1、构造函数

    StringBuilder():这个构造函数会产生一个可以容纳16个字符的对象。�
    StringBuilder(int length):这个构造函数会产生一个可以容纳给定长度的对象。�
    StringBuilder(String str):这个构造函数用给定的 str字符串初始化对象
    

    2、与String相似的用法

    char charAt(int position)
    void getChars(int start, int end,char[] array, int arrayStart)
    int indexOf(String str)
    int indexOf(String str, int start)
    int lastIndexOf(String str)
    int lastIndexOf(String str, int start)
    int length()
    String substring(int start)
    String substring(int start, int end)
    

    3、字符串添加

    append(item):在字符串末尾添加;
    insert(start, item):在指定位置添加;
    

    4.字符串替换、删除

    replace(start, end, str):替换指定位置的子串;
    setCharAt(i, str):替换指定位置的字符;
    deleteCharAt( ):删除指定位置的字符;
    
    

    相关文章

      网友评论

          本文标题:字符串

          本文链接:https://www.haomeiwen.com/subject/fkevyttx.html