码迷,mamicode.com
首页 > 其他好文 > 详细

String类中常用方法:

时间:2017-08-10 13:23:10      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:长度   字符串   字符串截取   字符串比较   art   indexof   区分   split   bsp   

1、字符串与字符数组的转换

a) Char c[] = str.toCharArray();

b) String str2 = new String(c);

c) String str3 = new String(c,0,3);//取出部分字符串变为String

2、取出字符串中指定位置的字符

a) Char c = str.charAt(index);

3、字符串变为byte数组

a) Byte b[] = str.getByte();

b) String str1 = new String(b);

c) String str2 = new String(b,0,3);

4、等到字符串的长度

str.lenght();注意此处调用的是方法,必须有()

5、查找自定的字符串是否存在;如果存在,返回位置,如果不存在,返回-1

a) str.indexOf(‘c’);

b) str.indexOf(‘c’,3);//从第四个开始查找。

6、去掉空格

a) str.trim();

7、字符串截取

a) str.substring(6);//从第七个开始截取

b) str.substring(0,5);//含头不含尾

8、按照指定的字符串拆分字符串

a) str.split(“a”);

9、字符串大小写转换

a) str.toUpperCase();

b) str.toLowerCase();

10、不区分大小写进行字符串比较

a) str1.equalsIgnoreCase(str2);

11、判断是否以指定字符串开头或者结尾

a) str.startsWith(“ad”);

b) str.endsWith(“cd”);

12、用指定的字符串替换

a) str.replaceAll(“ab”,”cd”);

String类中常用方法:

标签:长度   字符串   字符串截取   字符串比较   art   indexof   区分   split   bsp   

原文地址:http://www.cnblogs.com/XuGuobao/p/7338516.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!