JAVA中STRING的常用方法小结
一、创建并初始化一个字符串
string b = "hello";
使用构造方法创建并初始化一个字符串
string();//初始化字符串,表示空字符序列
string(value);//利用已存在的字符串常量创建一个新的对象
string (char[] value);//利用一个字符数组创建一个字符串
string(char[] value,int offset,int count);//截取字符数组offset到count的字符创建一个非空串
string(stringbuffer buffer);//利用stringbuffer对象初始化string对象
二、string类主要方法的使用:
1、获取长度 *.length();//这与数组中的获取长度不同,*.length;
2、比较字符串(1) equals() //判断内容是否相同
(2)compareto() //判断字符串的大小关系
(3)comparetoignorecase(string int) //在比较时忽略字母大小写
(4)== //判断内容与地址是否相同
(5)equalsignorecase() //忽略大小写的情况下判断内容是否相同
如果想对字符串中的部分内容是否相同进行比较,可以用
(6)reagionmatches() //有两种 public boolean regionmatches(int toffset, string other,int ooffset,int len);表示如果string对象的一个子字符串与参数other的一个子字符串是相同的字符序列,则为true.要比较的string 对象的字符串从索引toffset开始,other的字符串从索引ooffset开始,长度为len。
public boolean reagionmatches(boolean ignorecase,int toffset,string other,int ooffset,int len);//用布尔类型的参数指明两个字符串的比较是否对大小写敏感。
三、查找字符串中某个位置的字符
public char charat(int index);//返回指定索引index位置上的字符,索引范围从0开始
四、查找指定字符串在字符串中第一次或最后一词出现的位置
在string类中提供了两种查找指定位置的字符串第一次出现的位置的方法
(1)public int indexof(string str);//从字符串开始检索str,并返回第一次出现的位置,未出现返回-1
(2)public int indexof(string str,int fromindex);//从字符串的第fromindex个字符开始检索str
查找最后一次出现的位置有两种方法
(1)public int lastindexof(string str);
(2)public int lastindexof(string str,int fromindex);
如果不关心字符串的确切位置则可使用public boolean contains(charsequence s);
五、检查字符串的起始字符和结束字符
开始的字符串两种方法
(1)public boolean starwith(string prefix,int toffset);//如果参数prefix表示的字符串序列是该对象从索引toffset处开始的子字符串,则返回true
(2)public boolean starwith(string prefix);
结束的字符串方法
public boolean endswith(string suffix);
六、截取子串
(1)public string substring(int beginindex);
(2)public string substring(int beginindex,int endindex);//返回的字符串是从beginindex开始到endindex-1的串
要返回后4位可以这样写syetem.out.println(*.substring()(*.length()-4));
七、字符串的替换
两种方法
(1)public string replace(char oldchar,char newchar);
(2)public string replace(charsequence target,charsequence replacement);//把原来的etarget子序列替换为replacement序列,返回新串
(3)public string replaceall(string regex,string replacement);//用正则表达式实现对字符串的匹配
八、字符串的大小写替转换
(1)public string tolowercase(locale locale);
(2)public string tolowercase();
(3)public string touppercase(locale locale);
(4)public string touppercase();
九、去除字符串首尾空格
*.trim();
十、字符串转换
1、将字符串转换成字符数组
public char[] tochararray();
2、将字符串转换成字符串数组
public string[] split(string regex);//regex 是给定的匹配
3、将其它数据类型转化为字符串
(1)public static string valueof(boolean b);
(2)public static string valueof(char c);
(3)public static string valueof(int i);
(4)public static string valueof(long i);
(5)public static string valueof(float f);
(6)public static string valueof(double d);
(7)public static string valueof(char[] data);
(8)public static string valueof(object obj);
可变字符串的创建和初始化
两种方法:
public stringbuffer();
public stringbuffer(int caoacity);
stringbuffer类主要方法的使用:
一、获取可变字符串长度
(1)public int length();
(2)public int capacity();
(3)public void setlength(int newlength);
二、比较可变字符串
用string 类的equals()方法比较,但是不同。
类object中的equals()方法比较的是两个对象的地址是否相等,而不仅仅是比较内容,但是string类在继承object类的时候重写了equals()方法,只是比较两个对象的内容是否相等
而在stringbuffer类中没有重写object类的equals()方法,所以比较的是地址和内容。
三、追加和插入字符串
(1)追加 public stringbuffer append(type t);
(2)插入 public stringbuffer insert(int offset,type t);//在offset处加入类型为type的字符串
四、反转和删除字符串
(1)反转 public stringbuffer reverse();
(2)删除 public stringbuffer delete(int start,int end);
五、减少用于可变字符序列的存储空间
public void trimtosize();
六、stringbuffer类转换成string类
public string tostring();