黑马程序员_日记21_JavaString常用方法
——- android培训、java培训、期待与您交流! ———-
String类用来描述字符串,它提供了许多的方法来操作字符串。
那么,在String众多的方法中,常用的方法有哪些呢??
1 获取
1.1 字符串的长度
int length();
示例:
String str = "abcdefg";
str.length();
注意不是str.length;
1.2 根据索引获取字符
char charAt(int index);
示例:
String str = "abcdefg";
char ch = str.charAt(1);
ch = ‘b’;
1.3 根据字符获取索引
int indexOf(int ch);
注意参数不是char ch
,因为字符使用的是ASCII码。
int indexOf(int ch,int fromIndex);
从fromIndex指定位置开始,获取字符在字符串中出现的位置。
示例:
String str = "abcdefg";
int index = str.indexOf(‘c‘);
index = 2;
String str = "abcdefgc";
int index = str.indexOf(‘c‘,3);
System.out.println(index);
index = 7;
1.4 根据字符串获取索引
获取字符串str在字符串String中第一次出现的位置
int indexOf(String str)
从fromIndex指定位置开始,获取str在String字符串中第一次出现的位置
int indexOf(String str,int fromIndex)
示例:
String str = "abcdefgc";
int index = str.indexOf("def");
System.out.println(index);
```
index = 3;
String str = “abcdefgcdefdsadsdef”;
int index = str.indexOf(“def”,5);
System.out.println(index);
“`
index = 8;
1.5 反向索引
int lastIndexOf(int ch);
int lastIndexOf(int ch,int fromIndex);
int lastIndexOf(String str);
int lastIndexOf(String str,int fromIndex);
示例:
String str = "abcdefgcdefdsadsdef";
int index = str.lastIndexOf("def");
System.out.println(index);
index = 16;
String str = "abcdefgcdefdsadsdef";
int index = str.lastIndexOf("def",15);
System.out.println(index);
index = 9;
2 判断
2.1 是否包含字串
boolean contains(String str)
For example:
String str1 = "abcdefgcdefdsadsdef";
String str2 = "abc";
String str3 = "dc";
System.out.println(str1.contains(str2));//true
System.out.println(str1.contains(str3));//false
int indexOf(String str);
特殊之处:indexOf(str):可以索引str第一次出现位置,如果返回-1.表示该str不在字符串中存在。
所以,也可以用于对指定判断是否包含。
if(str.indexOf(“aa”)!=-1)
而且该方法即可以判断,有可以获取出现的位置。
For example:
String str1 = "abcdefgcdefdsadsdef";
String str2 = "abc";
String str3 = "dc";
System.out.println(str1.indexOf(str2));//0
System.out.println(str1.indexOf(str3));//-1
2.2 是否有内容
boolean isEmpty();
原理就是判断长度是否为0.
For example,
String str1 = "abcdefgcdefdsadsdef";
String str2 = "";
System.out.println(str1.isEmpty());//false
System.out.println(str2.isEmpty());//true
2.3 是否以指定前缀开头
boolean startsWith(String str)
For example,
String str1 = "abcdefgcdefdsadsdef";
System.out.println(str1.startsWith("abc"));//true
System.out.println(str1.startsWith("abd"));//false
2.4 是否以指定后缀结尾
boolean endsWith(String str)
For example.
String str1 = "abcdefgcdefdsadsdef";
System.out.println(str1.endsWith("def"));//true
System.out.println(str1.endsWith("sd"));//false
2.5 字符串内容是否相等
boolean equals(String str)
For example,
String str1 = "abcdefgcdefdsadsdef";
String str2 = new String("abcdefgcdefdsadsdef");
System.out.println(str1.equals(str2));//true
System.out.println(str1==str2);//false
2.6 忽略大小写字符串内容是否相等
boolean equalsIgnoreCase(String str)
For example,
String str1 = "abcdefgcdefdsadsdef";
String str2 = new String("ABCDEFGCDEFDSADSDEF");
System.out.println(str1.equals(str2));//false
System.out.println(str1.equalsIgnoreCase(str2));//true
3 转换
3.1 从字符数组转换为字符串
3.1.1 构造函数法
将字符数组全部转为字符串
String(char[] array)
将部分字符转为字符串
For example,
char[] array = {‘a‘,‘b‘,‘c‘,‘d‘,‘e‘,‘f‘,‘g‘,‘h‘,‘i‘,‘j‘};
String str = new String(array);
System.out.println(str);
结果:abcdefghij
String(char[] array,int offset,int count)
For example,
char[] array = {‘a‘,‘b‘,‘c‘,‘d‘,‘e‘,‘f‘,‘g‘,‘h‘,‘i‘,‘j‘};
String str = new String(array,2,5);
System.out.println(str);
结果:cdefg
3.1.2 静态方法
static String copyValueOf(char[] array)
For example,
char[] array = {‘a‘,‘b‘,‘c‘,‘d‘,‘e‘,‘f‘,‘g‘,‘h‘,‘i‘,‘j‘};
System.out.print(String.copyValueOf(array));
结果是:abcdefghij
static String copyValueOf(char[] array,int offset,int count)
For example,
char[] array = {‘a‘,‘b‘,‘c‘,‘d‘,‘e‘,‘f‘,‘g‘,‘h‘,‘i‘,‘j‘};
System.out.print(String.copyValueOf(array,2,5));
结果cdefg
3.2 从字符串转换为字符数组
char[] toCharArray()
注意不要写参数,因为是字符串对象调用该方法,参数就是this。
For example,
String str = new String("abcdefghjkl");
char[] array = str.toCharArray();
for(int i =0;i < array.length;i++)
System.out.print(array[i]+" ");
结果:a b c d e f g h j k l
3.3 从字节数组转换为字符串
String(byte[] array)
static String copyValueOf(byte[] array)
static String copyValueOf(byte array,int offset,int count)
3.4 从字符串转换为字节数组
byte getBytes();
3.5 从基本数据类型转换为字符串
staitc String valueOf(int)
static String valueOf(double)
static String valueOf(float)
...
For example,
int x = 3;
int y = 4;
System.out.println("x+y="+x+y);
System.out.println(String.valueOf(x+y));
结果
x+y=34
7
//3+”“;等价于//String.valueOf(3);
特殊:字符串和字节数组在转换过程中,是可以指定编码表的。
4 替换
`String replace(oldChar,newChar)’
For example,
String str1 = "abcdefg";
String str2 = str1.replace(‘a‘,‘m‘);
System.out.println(str1);
System.out.println(str2);
结果
abcdefg
mbcdefg
String str1 = "abcdefg";
String str2 = str1.replace("abc","mnj");
System.out.println(str1);
System.out.println(str2);
结果
abcdefg
mnjdefg
说明:字符串对象一旦被创建啊,就不会被改变,所以str1没变
5 切割
String[] split(regex)
For example
String str1 = "ab,cde,fg,dsadsd,dsadeqwe,dsdsaq";
String[] array = str1.split(",");
for(int i =0 ;i< array.length;i++)
System.out.println(array[i]);
结果
ab
cde
fg
dsadsd
dsadeqwe
dsdsaq
6 字串
String substring(int begin)
注意不是subString
String substring(int begin,int end)
包含头不包含尾
For example,
String str1 = "abcdefgdsadsddsadeqwedsdsaq";
String str2 = str1.substring(2);
String str3 = str1.substring(2,5);
System.out.println(str2);
System.out.println(str3);
结果
cdefgdsadsddsadeqwedsdsaq
cde
7 转换大小写,去除空格和比较
7.1 转换为大写
String toUpperCae()
7.2 转换为小写
String toLowerCase()
String str1 = "abcdefgdsadsddsadeqwedsdsaq";
String str2 = str1.toUpperCase();
String str3 = str2.toLowerCase();
System.out.println(str2);
System.out.println(str3);
结果
ABCDEFGDSADSDDSADEQWEDSDSAQ
abcdefgdsadsddsadeqwedsdsaq
7.3 去除字符串两端空格
String trim()
String str1 = " Hello java ";
String str2 = str1.trim();
System.out.println(str1);
System.out.println(str2);
结果
Hello java
Hello java
说明:字符串对象一旦被创建,就不可以被改变
7.4 比较字符串内容的字典序大小
int compareTo(String str)
For exampple
String str1 = "abcdef";
String str2 = "aaaaaaa";
System.out.println(str1.compareTo(str2));
结果
1
说明:从0脚标开始比较,如果str1的字符大于str2,则返回str1减去str2的值,为正数;如果返回值为0,说明相等,继续比较下一个脚标;
如果返回值为负数,说明str1的字典序小于str2;
如果最后返回值为0,说明str1和str2的字典序相等;
如果最后返回值为正数,说明,str1的字典序大于str2.
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。