Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
// Using String methods
String one = "ab'cd";
System.out.println(one.replace('\'','Q'));
String two = "ab\\cd";
System.out.println(two.replace('\\','Q'));
// Using java.util.regex package :
String REGEX = "\'";
String INPUT = "abc'd.";
String REPLACE = "T";
Pattern p = Pattern.compile(REGEX);
Matcher m = p.matcher(INPUT);
System.out.println(m.replaceAll(REPLACE));