java中String的常见用法总结
1>获取
1.1:字符串中包含的字符数,也就是字符串的长度。
int length():获取长度
1.2:根据位置获取位置上某个字符。
char charat(int index)
1.3:根据字符获取该字符在字符串中的位置。
int indexof(int ch):返回的是ch在字符串中第一次出现的位置。
int indexof(int ch,int fromindex):从fromindex指定位置开始,获取ch在字符串中出现的位置。
int indexof(string str):返回的是str在字符串中第一次出现的位置。
int indexof(string str,int fromindex):从fromindex指定位置开始,获取str在字符串中出现的位置。
1.4:int lastindexof(string str):反向索引。
2>判断
2.1:字符串中是否包含某一个子串。
boolean contains(str);
特殊之处:indexof(str):可以索引str第一次出现为止,如果返回-1,表示该str不在字符串中存在。
所以,也可以用于对指定判断是否包含。
if(str.indexof("a")!=1)
而且该方法既可以判断,也可以获取出现的位置。
2.2:字符串中是否有内容。
boolean isempty():原理就是判断长度是否为0。
2.3:字符串是否以指定内容开头。
boolean startswith(str);
2.4:字符串是否以指定内容结尾。
boolean endswith(str);
2.5:判断字符内容是否相同,复写了object类中的equals方法。
boolean equals(str);
2.6:判断内容是否相同,并忽略大小写。
boolean.equalsignorecase();
3>转换
3.1:将字符数组转成字符串。
构造函数:string(char[])
string(char[],offset,count):将字符数组中的一部分转成字符串
静态方法:
static string copyvalueof(char[]);
static string copyvalueof(char[] data,int offset,int count);
static string valueof(char[]);
3.2:将字符串转成字符组
char[] tochararray();
3.3:将字节数组转成字符串。
string(byte[])
string(byte[],offset,count):将字节数组中的一部分转成字符串
3.4:将字符串转成字节数组。
byte[] getbytes()
3.5:将基本数据类型转成字符串,
static string valueof(int)
static string valueof(double)
// 3+"" 与 string.valueof(3)的值是一样的
特殊:字符串和字节数组在转换过程中,是可以指定编码的。
4>替换
string replace(oldchar,newchar);
5>切割
string[] split(regex);
6>子串。获取字符串中的而一部分
string substring(begin);
string substring(begin,end);
7>转换,去除空格,比较。
7.1:将字符串转成大写或小写
string touppercsae() 大转小
string tolowercsae() 小转大
7.2:将字符串两端的多个空格去除
string trim();
7.3:对两个字符串进行自然顺序的比较
int compareto(string);
请看如下代码,下面的代码都是针对上面string七种用法而进行一一举例说明:
class stringmethoddemo
{
public static void method_zhuanhuan_qukong_bijiao()
{
string s = " hello java ";
//打印结果是:(hello和java前后门都有空格)hello java
sop(s.touppercase());
//打印结果是:(hello和java前后门都有空格)hello java
sop(s.tolowercase());
//打印及结果是:不带空格的“hello java”
sop(s.trim());
//比较数的大写,打印结果是:1,因为b对应ascii值是98,
//a对应是97,所以b-a=1
string s1 = "abc";
string s2 = "aaa";
sop(s1.compareto(s2));
}
public static void method_sub()
{
string s = "abcdef";
//打印结果是:cdef,从指定位置开始到结尾。如果角标不存在,会出现字符串角标越界。
sop(s.substring(2));
//打印结果是:cd,包含头,不包含尾。
sop(s.substring(2,4));
}
public static void method_split()
{
string s = "zhangsan,lisi,wangwu";
string[] arr = s.split(",");
for(int x=0; x<arr.length; x++)
{
sop(arr[x]);
}
}
public static void method_replace()
{
string s = "hello java";
//string s1 = s.replace('a','n');
//string s1 = s.replace('w','n'); 如果要替换的字符不存在,返回的还是原串
string s1 = s.replace("java","world");//打印结果是:hello world
sop("s="+s); //打印结果是:hello java因为字符串一旦被初始化,值就不可被改变
sop("s1="+s1);//打印结果是:hello jnvn
}
public static void method_trans()
{
char[] arr = {'a','b','c','d','e','f'};
string s = new string(arr,1,3);
sop("s="+s);//打印结果是:bcd
string s1 = "zxcvbnm";
char[] chs = s1.tochararray();
for(int x=0; x<chs.length; x++)
{
sop("ch="+chs[x]);//打印结果是:ch=z,x,c,v,b,n,m
}
}
public static void method_is()
{
string str = "arraydemo.java";
//判断文件名称是否是array单词开头
sop(str.startswith("array"));
//判断文件名称是否是.java的文件
sop(str.endswith(".java"));
//判断文件中是否包含demo
sop(str.contains("demo"));
}
public static void method_get()
{
string str = "abcdeakpf";
//长度
sop(str.length());
//根据索引获取字符
sop(str.charat(4));
//sop(str.charat(40));当访问到字符串中不存在的角标时会发生stringindexoutofboundsexception(字符串角标越界异常)
//根据字符获取索引
//sop(str.indexof('a'));
sop(str.indexof('a',3));//打印的是5,因为角标3是d,
//所以从d后面开始找a,第5个角标是a
//sop(str.indexof('t',3))打印:-1,如果没有找到角标,返回-1
//反向索引一个字符出现的位置(从右往左查找,但是角标还是从左开始)
sop(str.lastindexof("a"));
}
public static void main(string[] args)
{
method_zhuanhuan_qukong_bijiao();
//method_sub();
//method_split();
//method_replace();
//method_trans();
//method_is();
//method_get();
/*
string s1 = "abc";
string s2 = new string("abc");
string s3 = "abc";
system.out.println(s1==s2);
system.out.println(s1==s3);
*/
}
public static void sop(object obj)
{
system.out.println(obj);
}
}