String.replaceAll example

String a = "i안녕하세요.";
System.out.println(a.replaceAll("([\uac00-\ud7af]+)" , "Hello$1"));

--->

iHello안녕하세요.

댓글