Replace function in java

In the below program we are replacing “\\” (2 backslash) with (4 backslashes). Actually \(backslash) is used for escaping characters. Here we have to escape backslash only. so only 8 backslashes are used to get 4 backslashes.

Program:

[java]package god;

public class ReplaceFunction {

public static void main(String[] args) {
String naveen = "javadomain\\naveendra\\eversoftindia";
System.out.println(naveen);
String cool="\\\\\\\\\\\\\\\\";
System.out.println("after replacements using
replace function "+naveen.replace("\\", cool));
}

}[/java]

 

 

Output:

javadomain\naveendra\eversoftindia
after replacements using replace function javadomain\\\\\\\\naveendra\\\\\\\\eversoftindia

Leave a Reply