lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> x = "Foo\
> Bar"
> 
> is now the same than
> 
> x = "Foo\z
>      Bar"
> 
> and the same than
> 
> x = [[
> Foo
> Bar]]
> 
> right?

Wrong :)  '\z' skips linebreaks, too. So,

x = "Foo\z
     Bar"

is the same as

x = "FooBar"

A more realistic use is like this:

x = "\x7F\x45\x4C\x46\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\z
     \x02\x00\x03\x00\x01\x00\x00\x00\x30\xB9\x04\x08\x34\x00\x00\x00\z
     \x60\xC5\x0A\x00\x00\x00\x00\x00\x34\x00\x20\x00\x08\x00\x28\x00\z
     \x27\x00\x24\x00\x06\x00\x00\x00\x34\x00\x00\x00\x34\x80\x04\x08\z
     \x34\x80\x04\x08\x00\x01\x00\x00\x00\x01\x00\x00\x05\x00\x00\x00\z
     \x04\x00\x00\x00\x03\x00\x00\x00\x34\x01\x00\x00\x34\x81\x04\x08\z
     \x34\x81\x04\x08\x13\x00\x00\x00\x13\x00\x00\x00\x04\x00\x00\x00\z
     \x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x80\x04\x08\z
     \x00\x80\x04\x08\x6C\x74\x03\x00\x6C\x74\x03\x00\x05\x00\x00\x00\z
     \x00\x10\x00\x00\x01\x00\x00\x00\xE0\x7E\x03\x00\xE0\x0E\x08\x08"

-- Roberto