public class ReplaceStr {
public static void main(String[] args) {
String str1 = "Hello,Hello,Nick";
String str2 = str1.replaceAll("Hello","Bye");
System.out.println("str1: "+str1);
System.out.println("str2: "+str2);
}
}



