java中String的罕見用法總結。本站提示廣大學習愛好者:(java中String的罕見用法總結)文章只能為提供參考,不一定能成為您想要的結果。以下是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);
}
}