Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #11822
| From | Knute Johnson <nospam@knutejohnson.com> |
|---|---|
| Newsgroups | comp.lang.java.programmer |
| Subject | Re: Escape character for single quotes. Is it really required in String? |
| Date | 2012-02-07 10:28 -0800 |
| Organization | A noiseless patient Spider |
| Message-ID | <jgrqgk$sf1$2@dont-email.me> (permalink) |
| References | <93e3af31-e4d8-43df-9c03-9645b6885d1e@l16g2000vbl.googlegroups.com> <BoednbdHwOXVlqzSnZ2dnUVZ8kudnZ2d@giganews.com> <2362811.69.1328617748528.JavaMail.geo-discussion-forums@pbcjq2> |
On 2/7/2012 4:29 AM, Mausam wrote:
> On Tuesday, 7 February 2012 17:00:16 UTC+5:30, Leif Roar Moldskred wrote:
>> Mausam<mausamhere@gmail.com> wrote:
>>
>>> How the two string is different? And when should I use escape
>>> character for single quote?
>>
>> In character literals.
>>
>> char apostrophe = '\'';
>
> Thanks. For char it makes sense. But then my understanding that this escape character does not make any difference when used in String is correct.
>
>
>>
>> --
>> Leif Roar Moldskred
>
and the Strings are equal;
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);
System.out.println(str.equals(str1));
}
}
C:\Documents and Settings\Knute Johnson>java Class1
I have a single quote. That's it
I have a single quote. That's it
true
--
Knute Johnson
Back to comp.lang.java.programmer | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll 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