Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,959 questions

51,901 answers

573 users

How to use escape characters in Java

1 Answer

0 votes
public class MyClass {
    public static void main(String args[]) {
        String tab = "tab: \t";
        String backspace = "backspace: \b";
        String newline = "newline: \n";
        String carriageReturn = "carriageReturn: \r ";
        String formfeed = "formfeed: \f";
        char singleQuote = '\'';
        String doubleQuotes = "\"doubleQuotes\"";
        String backslash = "backslash: \\ ";

        System.out.println("1) " + tab);
        System.out.println("2) " + backspace);
        System.out.println("3) " + newline);
        System.out.println("4) " + carriageReturn);
        System.out.println("5) " + formfeed);
        System.out.println("6) " + singleQuote);
        System.out.println("7) " + doubleQuotes);
        System.out.println("8) " + backslash);
    }
}




/*
run:

1) tab: 	
2) backspace: 
3) newline: 

4) carriageReturn: 
 
5) formfeed: 
6) '
7) "doubleQuotes"
8) backslash: \ 

*/

 



answered Jan 5, 2022 by avibootz

Related questions

...