Using the @ symbol


ccdubs

Recommended Posts

Posted

I'm sure the answer will be easy, but I want to make a string for an email address. At the moment I have:

strEmailAddress = MyVar + "@testemail.com"

I can't get the @ to show up in strEmailAddress.

Posted

@ is a reserved symbol when it is the first symbol in a string. It is used for multi-lingual apps. Please see section 7.12 in the user's guide for more info. If you want a string to start with @ but not use it for multilingual, simply put two @@ signs and the first will be stripped by the language parser.

Archived

This topic is now archived and is closed to further replies.