面向对象String

String 类中常用方法

1、字符串与字符数组之间的转换(.toCharArray())

代码如下

public class StringZiFuZhuanHuan
{
     public static void main(String[] args){
         String str1="hello";
         char c[]=str1.toCharArray();//字符串与字符数组之间转换.toCharArray()
         for(int i=0;i<c.length;i++){
             System.out.print(c[i]+"\t");
         }
         System.out.println("\t");
         String str2=new String(c);
         String str3=new String(c,1,4);//字符串c,从第一位置开始至第三位置
         System.out.println(str2);
         System.out.println(str3);
     }

}

2、String类中常用方法

1、length() 字符串的长度
  例:char chars[]={'a','b'.'c'};
    String s=new String(chars);
    int len=s.length();

2、charAt() 截取一个字符
  例:char ch;
    ch="abc".charAt(1); 返回'b'

3、 getChars() 截取多个字符
  void getChars(int sourceStart,int sourceEnd,char target[],int targetStart)
  sourceStart指定了子串开始字符的下标,sourceEnd指定了子串结束后的下一个字符的下标。因此, 子串包含从sourceStart到sourceEnd-1的字符。接收字符的数组由target指定,target中开始复制子串的下标值是targetStart。
  例:String s="this is a demo of the getChars method.";
    char buf[]=new char[20];
    s.getChars(10,14,buf,0);

4、getBytes()
  替代getChars()的一种方法是将字符存储在字节数组中,该方法即getBytes()。

5、toCharArray()

6、equals()和equalsIgnoreCase() 比较两个字符串

7、regionMatches() 用于比较一个字符串中特定区域与另一特定区域,它有一个重载的形式允许在比较中忽略大小写。
  boolean regionMatches(int startIndex,String str2,int str2StartIndex,int numChars)
  boolean regionMatches(boolean ignoreCase,int startIndex,String str2,int str2StartIndex,int numChars)

8、startsWith()和endsWith()  startsWith()方法决定是否以特定字符串开始,endWith()方法决定是否以特定字符串结束

9、equals()和==
  equals()方法比较字符串对象中的字符,==运算符比较两个对象是否引用同一实例。
  例:String s1="Hello";
    String s2=new String(s1);
    s1.eauals(s2); //true
    s1==s2;//false

10、compareTo()和compareToIgnoreCase() 比较字符串

11、indexOf()和lastIndexOf()
  indexOf() 查找字符或者子串第一次出现的地方。
  lastIndexOf() 查找字符或者子串是后一次出现的地方。

12、substring()  它有两种形式,第一种是:String substring(int startIndex)
         第二种是:String substring(int startIndex,int endIndex)

13、concat() 连接两个字符串

14 、replace() 替换
  它有两种形式,第一种形式用一个字符在调用字符串中所有出现某个字符的地方进行替换,形式如下:
  String replace(char original,char replacement)
  例如:String s="Hello".replace('l','w');
  第二种形式是用一个字符序列替换另一个字符序列,形式如下:
  String replace(CharSequence original,CharSequence replacement)

15、trim() 去掉起始和结尾的空格

16、valueOf() 转换为字符串

17、toLowerCase() 转换为小写

18、toUpperCase() 转换为大写

19、StringBuffer构造函数
  StringBuffer定义了三个构造函数:
  StringBuffer()
  StringBuffer(int size)
  StringBuffer(String str)
  StringBuffer(CharSequence chars)
  
  (1)、length()和capacity()    一个StringBuffer当前长度可通过length()方法得到,而整个可分配空间通过capacity()方法得到。
  
  (2)、ensureCapacity() 设置缓冲区的大小
    void ensureCapacity(int capacity)

  (3)、setLength() 设置缓冲区的长度
    void setLength(int len)

  (4)、charAt()和setCharAt()
    char charAt(int where)
    void setCharAt(int where,char ch)

  (5)、getChars()
    void getChars(int sourceStart,int sourceEnd,char target[],int targetStart)

  (6)、append() 可把任何类型数据的字符串表示连接到调用的StringBuffer对象的末尾。
    例:int a=42;
      StringBuffer sb=new StringBuffer(40);
      String s=sb.append("a=").append(a).append("!").toString();

  (7)、insert() 插入字符串
    StringBuffer insert(int index,String str)
    StringBuffer insert(int index,char ch)
    StringBuffer insert(int index,Object obj)
    index指定将字符串插入到StringBuffer对象中的位置的下标。

  (8)、reverse() 颠倒StringBuffer对象中的字符
    StringBuffer reverse()

  (9)、delete()和deleteCharAt() 删除字符
    StringBuffer delete(int startIndex,int endIndex)
    StringBuffer deleteCharAt(int loc)

  (10)、replace() 替换
    StringBuffer replace(int startIndex,int endIndex,String str)

  (11)、substring() 截取子串
    String substring(int startIndex)
    String substring(int startIndex,int endIndex)

代码如下

public class StringLeiChangYongFangFa
{
    public static void main(String[] args){
        String str1="helloyanzhe";
        String str2="     helloyanzhe";
        System.out.println(str1.charAt(4));
        byte b[]=str1.getBytes();//字符串与byte数组的转换
        System.out.println(new String(b));//通过String构造方法将数组b[]转化为字符串输出
        System.out.println(new String(b,1,3));
        System.out.println("字符串"+str1+"的长度为:"+str1.length());//取得字符串长度,注意是str1.length(),非length(str1);
        System.out.println(str1.indexOf("y"));
        System.out.println(str1.indexOf("y",3));//查到返回位置,从第四个开始查找
        System.out.println(str1.indexOf("x"));//查找一个字符串是否存在,不存在返回—1.
        System.out.println(str2.trim());//去掉左右空格
        System.out.println(str2);
        System.out.println(str1.substring(5));//字符串截取substring();
        System.out.println(str1.substring(2,6));
        String s[]=str1.split("y");
        for(int i=0;i<s.length;i++){
            System.out.println(s[i]);//字符串拆分,split 方法的结果是一个字符串数组,查分的数据将以字符数组形式输出,如“System.out.println(str1.spilt("o"));”是错误的;
        }
        System.out.println("将\"hello world\"转成大写"+"helloworld".toUpperCase());//字符串的大小写转换,注意:如输出:“将“hello world”转成小写”,应“System.out.println("将\"hello world\"转成大写"+"helloworld".toUpperCase()”
        System.out.println("将\"HELLO WORLD\"转成大写"+"helloworld".toLowerCase());
        String str3="&&hello";
        String str4="HELLO&&";
        
        if(str3.startsWith("&&")){
            System.out.println("(&&hello)以&&开头");
        }
        if(str4.endsWith("&&")){
            System.out.println("(hello&&)以&&结尾");
        }
        String str5="heeello";
        String str6="HEEELLO";
        System.out.println("\"HEEELLO\"equals\"heeello\"  "+str6.equals(str5));
        System.out.println("\"HEEELLO\"equalslgnoreCase\"heeello\"  "+str6.equalsIgnoreCase(str5));//不区分大小写的字符串比较equalsIgnoreCase();
        String newStr5=str5.replaceAll("e","y");
        System.out.println("替换后的结果:"+newStr5);//指定字符串替换其他字符串
    }

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值