移除字串中給定字串
阿新 • • 發佈:2018-11-24
//移除字串中所有給定字串 public class removeAll{ public static void main(String[] args){ remove(); } static void remove(){ String str =" hello,world" ; System.out.println("移除前的字串為"+str); System.out.println("移除指定的字母0"); System.out.println("移除l後的字串為:"); String str1=str.replaceAll("0", "");//將l移除,其實替換,不過替換的內容為空,如果將引號中給一個內容,就會替換 System.out.println("["+str1.trim()+"]");//將str兩邊的空格刪掉 //我們再次移除一個字母d System.out.println("移除一個字母d後的字串為:"); String str2=str1.replaceAll("d",""); System.out.println(str2); //再將o字母替換為i like you System.out.println("替換後的字串為:"); String str3 =str2.replaceAll("o","i like you"); System.out.println(str3); } }