程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> String類常用方法

String類常用方法

編輯:關於C++
字符串與字符數組的轉換
toCharArray()<—>String(char[] c)..
public class StringAPIDemo01{
public static void main(String args[]){
String str1="hello";
char c[]=str1.toCharArray();//字符串變字符數組
for(int i=0;i

run

從字符串中取出指定位置的字符
charAt()
public class StringAPIDemo02{
public static void main(String args[]){
String str1="hello";
System.out.println(str1.charAt(1));//取出第2個字符
}
}

run

字符串與byte數組轉換
getBytes()<—>String(byte[] b)..
public class StringAPIDemo03{
public static void main(String args[]){
String str1="hello";
byte b[]=str1.getBytes();//String-->byte[]
for(int i=0;iString
System.out.println(new String(b,1,3));
}
}

run

取得字符串長度
length()
public class StringAPIDemo04{
public static void main(String args[]){
String str1="hello Lixinghua";
System.out.println("\""+str1+"\"的長度為:"+str1.length());
}
}

run

查找指定字符串是否存在
indexOf()
public class StringAPIDemo05{
public static void main(String args[]){
String str1="abcdefgcgh";
System.out.println(str1.indexOf("c"));//返回查找位置
System.out.println(str1.indexOf("c",3));//從第4位開始找
System.out.println(str1.indexOf("x"));//未找到返回-1
}
}

run

去掉左右空格
trim()
public class StringAPIDemo06{
public static void main(String args[]){
String str1="   hell o    ";
System.out.println(str1.trim());//去掉左右空格
}
}

run

字符串截取
substring()..
public class StringAPIDemo07{
public static void main(String args[]){
String str1="hello world";
System.out.println(str1.substring(6));//從第7位開始截取
System.out.println(str1.substring(0,5));//截取0-5
}
}

run

按照指定的字符串拆分字符串
split()
public class StringAPIDemo08{
public static void main(String args[]){
String str1="hello world";
String s[]=str1.split(" "|"\t");//按空格或制表符拆分
for(String str:s){
System.out.println(str);
}
}
} 

run

字符串的大小寫轉換
toUpperCase()<—>toLowerCase()
public class StringAPIDemo09{
public static void main(String args[]){
System.out.println("將\"hello world\"轉成大寫:"+"hello world".toUpperCase());
System.out.println("將\"HELLO WORLD\"轉成小寫:"+"HELLO WORLD".toLowerCase());
}
}

run

判斷是否以指定的字符串開頭或結尾
startsWith()<—>endsWith()
public class StringAPIDemo10{
public static void main(String args[]){
String str1="**HELLO";
String str2="Hello**";
if(str1.startsWith("**")){//判斷是否以**開頭
System.out.println("(**HELLO)以**開頭");
}
if(str2.endsWith("**")){//判斷是否以**結尾
System.out.println("(Hello**)以**結尾");
}
}
}

run

不區分大小寫進行字符串比較
equalsIgnoreCase()
public class StringAPIDemo11{
public static void main(String args[]){
String str1="HELLO";
String str2="hello";
System.out.println("\"HELLO\" equals \"hello\""+str1.equals(str2));//區分大小寫比較
System.out.println("\"HELLO\" equalsIgnoreCase \"hello\""+str1.equalsIgnoreCase(str2));//不區分大小寫比較
}
}

run

將指定字符串替換成其他字符串
replaceAll()
public class StringAPIDemo12{
public static void main(String args[]){
String str="hello";
String newStr=str.replaceAll("l","x");//將所有l換成x
System.out.println("替換之後的結果為:"+newStr);
}
}

run

   
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved