Hello guys i'm trying to create a program in C# where I am comparing two strings in which within the strings they have the double quotation marks. My problem is how do I compare them for equality because it seems the compiler ignores the words within the quotation marks and does not give me the right comparison.

An example is if

string1 = Hi "insert name" here. string2 = Hi "insert name" here.

I want to use string1.equals(string2). But it seems it tells me the strings are not equal. How do I do this? Please help.

PS. I have no control on what the strings will look like as they are dynamic variables. So I can't just say add an escape sequence to it.

link|improve this question
Use escape characters. – Kaipa M Sarma Feb 17 at 7:12
the strings being compared are designed to not have escape characters because they are fixed messages that comes from an excel file. – user1215604 Feb 17 at 7:17
i have no control on what the strings will look like as they are dynamic variables. – user1215604 Feb 17 at 7:19
feedback

1 Answer

string s1 = "Hi \"insert name\" here.";
string s2 = "Hi \"insert name\" here.";

Console.WriteLine((s1 == s2).ToString()); //True

I have no problem ...

link|improve this answer
Yes I get that you won't have a problem if strings were typed that way. But these strings were inside an excel spreadsheet and were written as "Hi "insert name" here." – user1215604 Feb 17 at 7:16
i have no control on what the strings will look like as they are dynamic variables – user1215604 Feb 17 at 7:21
When you read from that excel spreadsheet, and assign it to a variable, wouldn't "Hi "insert name" here" become "Hi \"insert name\" here" ? – Tung Feb 17 at 7:45
No it is not. It still reads as Hi "insert name" here. – user1215604 Feb 17 at 7:54
Assuming you are using visual studio, set a breakpoint at a location where the variable is in scope, then open up your immediate window (ctrl + alt + i), and type in the variable's name. You will see that it's representation is most likely as @Alex describes. Viewing the string in the immediate window will also reveal special characters like line feeds and carriage returns. Btw, how are you viewing the string values right now? If you are hovering over the variable and clicking on a magnifying glass icon, then you will not see the backslashes used to escape the quotes. – Tung Feb 17 at 23:02
feedback

Your Answer

 
or
required, but never shown

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