In following code, the usage of the string "“" (i.e. a left double quotation mark inside a string) results in a compile error in VB.NET:
StringVar = Replace(StringVar, "“", "“")
What’s going on here?
|
In following code, the usage of the string
What’s going on here?
| |||||||||||
feedback
|
|
It seems as if you want to replace curly quotes with their HTML code equivalent. On the first glance, your code is absolutely correct. The problem is that VB allows curly quotes in place of regular quotes in code (because Unicode is great, right?). That is, the following codes are all equivalent:
Now, if you want to use a quotation mark inside a string, VB doesn’t know whether the quotation mark is supposed to end the string or not. In C#, this would be fixed by escaping the quotation mark, i.e. in place of Back to your curly quote. The same as for straight quotes applies according to the VB language specification (¶1.6.4). So to write a curly quote in code, try the following:
Unfortunately, I cannot try this code now and it’s altogether possible that the IDE simply replaces this by straight quotes. If that’s the case, an alternative is to use
Or, for symmetry, written in decimal (but I prefer hexadecimal for character codes):
Something else: the
| |||||||||||||||
feedback
|
|
See http://msdn.microsoft.com/en-us/library/613dxh46%28v=vs.71%29.aspx Try this:
| |||
|
feedback
|
|
It looks like you're searching for the If you're trying to replace straight quotes in a string with curly quotes, try the following code:
Or, if you're trying to encode the left-facing curly quotes in a string by replacing them with an alternate notation (assuming the one you used in the question is correct), try the following code:
| |||||||
feedback
|