vote up 1 vote down star

Does anyone else think that escaping characters in very short strings make them not very readable? I noticed I was using s = "\"" in my code to assign a double quote a string, but having thought about it, I came up with the following alternative: s = '"'.ToString().

  • Is my alternative any good? Would you prefer see the first version in code?
  • How would you go about assigning two double quotes (""), which might be s = "\"\"", to a string?

/me is marking this CW before being pressured into it.

flag

2 Answers

vote up 6 vote down check

You could use:

String s = new String('"', 1);

or if you like to confuse people:

String s = @"""";

but actually I still prefer the good-old-fashioned escape: \"

link|flag
I'd better get used to it then. – MiseryIndex Oct 3 at 19:42
1  
Your second example is giving me horrible flashbacks to VB6's string quoting... – Matthew Scharley Oct 4 at 14:57
vote up 3 vote down

I'm not sure the alternative is more readable, on the contrary it's confusing. Besides, using a function call to have a different look in the source code doesn't make much sense - I would even say it's bad practice.

The old-fashioned escape sequence is the best option IMHO.

link|flag
1  
+1. In my view, "\"" is the winner. – bobbymcr Oct 3 at 17:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.