Re: @"string" by Garfilone
Garfilone
Wed Jul 09 02:18:11 CDT 2008
On Jul 8, 9:55=A0pm, "Mike Gleason jr Couturier"
<nos...@invalidhost.com> wrote:
> Why do I see a @ preceding strings in code examples?
>
> What does the @ do?
>
> thanks!
with this symbol you could go without escape chars, for example
without @: var str=3D"e:\\folder1\\folder2\\folder3\\file"
with @: var str=3D@"e:\folder1\folder2\folder3\file"