fork download
  1. class Ideone
  2. {
  3. public static void main (String[] args)
  4. {
  5. String str = "100ドル";
  6. String sub = str.replaceAll("ドル", "ユーロ");
  7. System.out.println(sub);
  8. }
  9. }
Success #stdin #stdout 0.06s 32920KB
stdin
Standard input is empty
stdout
100ユーロ