Java中對字串的一些常見處理
三者分別有各自適用的場合。 String:適用於少量的字串操作的情況。 StringBuilder:適用於單執行緒下在字元緩衝區進行大量操作的情況。 StringBuffer:適用多執行緒下在字元緩衝區進行大量操作的情況。
String用法: 1、將陣列中元素以字串形式輸出
陣列可以使byte型別的,也可以是char型別的(強制轉換為字串)。舉例如下:
public class str { public static void main(String[] args) { byte[] b={97,98,99}; String str=new String(b); System.out.println(str); }
輸出結果:abc;
public class strTest
{
public static void main(String[] args)
{
char[] c={'H','e','l','l','o'};
String str=new String(c);
System.out.println(str);
}
輸出結果:Hello;
當然,也可以把陣列中的特定元素片段轉換成字串輸出。
public class strTest { public static void main(String[] args) { byte[] b={97,98,99,100,101,102}; String str=new String(b,3,2); System.out.println(str); }
輸出:de; 從陣列元素b[3]開始(包括b[3]在內)的連續兩個元素以字串形式輸出。
2、字串中的一些常用函式:連線concat()、提取substring()、charAt()、length()、equals()、equalsIgnoreCase()等等。
String str1="you";
String str2=" welcome";
System.out.println(str1.concat(str2));
輸出結果:you welcome;
String str="we are students and he is a techer"; System.out.println(str.substring(2,10));
輸出結果: are stu ;
從str[2]開始,到str[9]結束。 substring() 方法用於提取字串中介於兩個指定下標之間的字元。
stringObject.substring(start,stop)
String str="we are students and he is a worker";
System.out.println(str.charAt(1));
輸出結果:e;
charAt(int index)方法是一個能夠用來檢索特定索引下的字元的String例項的方法. charAt()方法返回指定索引位置的char值。索引範圍為0~length()-1. 如: str.charAt(0)檢索str中的第一個字元,str.charAt(str.length()-1)檢索最後一個字元.
String str="we are";
System.out.println(str.length());
輸出結果:6;
比較兩個字串是否相同用equals():
public class test {
public static void main(String[] args) {
String str1="we are students and he is a worker";
String str2="we are students and he is a worker";
System.out.println(str1.equals(str2));
}
}
輸出結果:true;
3、字串的一些檢索查詢字元的函式
public class test {
public static void main(String[] args) {
String str="我們一起數到6吧!";
System.out.println(str.indexOf("一"));
System.out.println(str.indexOf("6"));
System.out.println(str.startsWith("我"));
System.out.println(str.endsWith("!"));
}
}
輸出結果:
2
6
true
true
補充:Java如何遍歷字串:
String s="abcde";
for(int i=0;i<s.length();i++)
{
char c=s.charAt(i);
System.out.print(c+" ");//輸出a b c d e,獲取字串
}
String[] s1={"a","b","c","d","e"};
for(int i=0;i<s1.length;i++)
{
System.out.print(s1[i]+" ");//輸出a b c d e,獲取字串陣列
}
Java如何把String字串轉換為數字?
1、轉換為浮點型:
使用Double或者Float的parseDouble或者parseFloat方法進行轉換
String s = "123.456 ";
double d = Double.parseDouble(s);
float f = Float.parseFloat(s);
轉換為整型:
使用Integer的parseInt方法進行轉換。
int i = Integer.parseInt(str);//str待轉換的字串