2015年3月24日 星期二

在 Java 中使用 replace 及 replaceAll 取代字元

取代字元

String newstring = str1.replace("-",",");

取代字串

String newstring = str1.replaceAll("[a-z]","0");

取代來源字串中, 第一個符合條件的部份

String newstring = str1.replaceFirst("[a-z]","0");

沒有留言:

張貼留言