lua-users home
lua-l archive

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


On Sat, Oct 16, 2010 at 10:56 AM, James Rhodes
<jrhodes@roket-enterprises.com> > >a=split(t,"([ <TAB>]+)");
> Where you would replace <TAB> with an actual tab character.

No need to put the actual character in - \t will do fine.  It's
perhaps hard to read,

[ \t]+

because the space there is fairly invisible....

steve d.