字符串中字符的替换

public class FirstDemo {

   /**
    *API中String的常用方法
    */
   // 字符串中字符的替换
   public static void main(String[] args) {

    String str1 = "asdfg";
    String newStr2 = str1.replaceAll( "a", "A");
    System.out.print( "将所有str1字符串中的a替换为A------〉" + newStr2);
  }

}

你可能感兴趣的:(字符串中字符的替换)