Storing a " as Text

I need to store a " (double quote) as Text.

Of course, I cannot place the " inside of " ".

Previously, using the old framework, I used Chr(34), but the Chr method of course is not available in the new framework as String is replaced by Text.

I see that the .Asc property of TextEnoding is available, but I don’t see a way to go the other way (from ASCII code to its character equivalent as Text.)

I am sure the solution is simple, but I could not find anything after looking through the forum and the Dev Center.

Thanks in advance, all. Any help would be appreciated.

My target is IOS, by the way.

Dim t As Text = """"

Or

Dim t As Text = &u22

Or

Dim t As Text = Text.FromUnicodeCodepoint(34)

Dim t As Text = “”""

Or make a t constant containing the quote.

[quote=237719:@Eli Ott]Or

Dim t As Text = Text.FromUnicodeCodepoint(34)

Use &u22 instead, which is a constant expression and doesn’t require any code to execute at runtime.

Santa must have put me on the nice list

Norman + Michel + Joe replying on Christmas :smiley:

Thanks, gentlemen.

I used “”"" and it worked great. Its in the Dev Center under Literals, for those who may be interested.