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