fork download
  1. class Demo{
  2. public static void main(String[] args){
  3. String s="小猫咪";
  4. String res=s.replace("猫","狗");
  5. System.out.println(res);
  6. }
  7. }
Success #stdin #stdout 0.07s 54780KB
stdin
Standard input is empty
stdout
小狗咪