java常见字符串函数

java常见字符串函数

ID:18147717

大小:130.00 KB

页数:6页

时间:2018-09-14

java常见字符串函数_第1页
java常见字符串函数_第2页
java常见字符串函数_第3页
java常见字符串函数_第4页
java常见字符串函数_第5页
资源描述:

《java常见字符串函数》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、常见字符串函数函数名格式功能charAtcharAt(int index)返回指定位置上的字符实例Stringstr="Hello,World!";System.out.println(str.charAt(1));结果ecompareTocompareTo(Stringstr)按ASCII顺序比较字符串大小,返回字符ASCII值之差,返回值大于0,表示大于返回值等于0,表示相等返回值小于0,表示小于实例Stringstr="Hello,World!";System.out.println(str.c

2、ompareTo("I"));结果-1,表示"Hello,World!"小于”I”compareToIgnoreCasecompareToIgnoreCase(Stringstr)按ASCII顺序比较字符串大小,返回字符ASCII值之差,但忽略大小写返回值大于0,表示大于返回值等于0,表示相等返回值小于0,表示小于实例Stringstr="Hello,World!";System.out.println(str.compareToIgnoreCase("hello,world!"));结果0,表示忽略

3、大小写,两个字符串相等Concatconcat(Stringstr)将指定字符串联到此字符串的结尾实例Stringstr="Hello,World!";System.out.println(str.concat("ok"));结果Hello,World!okcopyValueOfcopyValueOf(char[]ch,intstart,intlength)从字符数组指定位置复制指定个数的字符实例Stringstr="Hello,World!";char[]ch={'H','e','l','l','o

4、'};System.out.println(str.copyValueOf(ch,0,2));System.out.println(str);结果HeHello,World!copyValueOfcopyValueOf(char[],ch)复制字符数组中的字符实例Stringstr="Hello,World!";char[]ch={'H','e','l','l','o'};System.out.println(str.copyValueOf(ch));System.out.println(str);结

5、果HelloHello,World! endsWithendsWith(Stringstr)测试是否以指定字符串结尾实例Stringstr="Hello,World!";System.out.println(str.endsWith("!"));结果trueSystem.out.println(str.endsWith("d"));false 函数名格式功能equalsequals(Objectobj)测试字符串是否相等实例Stringstr="Hello,World!";System.out.pri

6、ntln(str.equals("ok"));结果false equalsIgnoreCaseequalsIgnoreCase(Stringstr)测试字符串是否相等,但忽略大小写实例Stringstr="Hello,World!";System.out.println(str.equalsIgnoreCase("hello,world!"));结果TruegetBytesgetBytes()获取字符串对应的字节数组实例Stringstr="Hello,World!";byte[]b=newbyte[

7、20];b=str.getBytes();//通过字节数组生成字符串System.out.println(newString(b));结果Hello,World!getCharsgetChars(intsrcBegin,intsrcEnd,char[]dst,intdstBegin)从字符串中指定开始位置到结束位置之前的所有字符复制到字符数组中实例char[]ch=newchar[5];Stringstr="Hello,World!";str.getChars(0,5,ch,0);System.out

8、.println(newString(ch));结果HelloindexOfindexOf(int ch)返回指定字符在此字符串中第一次出现处的索引实例Stringstr="Hello,World!";System.out.println(str.indexOf('o'));结果4indexOfindexOf(int ch,int fromIndex)从指定的索引开始从前往后搜索,返回在此字符串中第一次出现指定字符处的索引实例Stringstr="Hel

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。