ccdubs Posted July 9, 2011 Share Posted July 9, 2011 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. Link to comment Share on other sites More sharing options...
AzeoTech Posted July 11, 2011 Share Posted July 11, 2011 @ 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. Link to comment Share on other sites More sharing options...
ccdubs Posted July 11, 2011 Author Share Posted July 11, 2011 Thanks, I knew it would be simple. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.