Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.programmer > #11806

Escape character for single quotes. Is it really required in String?

From Mausam <mausamhere@gmail.com>
Newsgroups comp.lang.java.programmer
Subject Escape character for single quotes. Is it really required in String?
Date 2012-02-07 03:14 -0800
Organization http://groups.google.com
Message-ID <93e3af31-e4d8-43df-9c03-9645b6885d1e@l16g2000vbl.googlegroups.com> (permalink)

Show all headers | View raw


Hello,

http://java.sun.com/docs/books/jls/second_edition/html/lexical.doc.html#101089
defines escape character for single character as well.

But single quote works fine in String without any escape character.

public class Class1 {

    private static String str = "I have a single quote. That's it";
    private static String str1 = "I have a single quote. That\'s it";
    public static void main(String[] args) {
        System.out.println(str);
        System.out.println(str1);
    }
}

How the two string is different? And when should I use escape
character for single quote?

Back to comp.lang.java.programmer | Previous | NextNext in thread | Find similar | Unroll thread


Thread

Escape character for single quotes. Is it really required in String? Mausam <mausamhere@gmail.com> - 2012-02-07 03:14 -0800
  Re: Escape character for single quotes. Is it really required in String? Mausam <mausamhere@gmail.com> - 2012-02-07 03:18 -0800
  Re: Escape character for single quotes. Is it really required in String? Leif Roar Moldskred <leifm@dimnakorr.com> - 2012-02-07 05:30 -0600
    Re: Escape character for single quotes. Is it really required in String? Mausam <mausamhere@gmail.com> - 2012-02-07 04:29 -0800
      Re: Escape character for single quotes. Is it really required in String? Knute Johnson <nospam@knutejohnson.com> - 2012-02-07 10:28 -0800
  Re: Escape character for single quotes. Is it really required in String? Lew <lewbloch@gmail.com> - 2012-02-07 11:11 -0800

csiph-web