[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] Lua 5.3.3 (rc1) now available
- From: Dirk Laurie <dirk.laurie@...>
- Date: Fri, 6 May 2016 18:26:38 +0200
2016-05-06 17:46 GMT+02:00 Roberto Ierusalimschy <roberto@inf.puc-rio.br>:
> - new semantics for empty matches ("Python rule")
Thank you! "split" is now easy. After eight years :-)
Lua 5.3.3 Copyright (C) 1994-2016 Lua.org, PUC-Rio
> for k in ("a,,b,c"):gmatch"[^,]*" do print(k) end
a
b
c
>
[1] http://lua-users.org/lists/lua-l/2008-02/msg01191.html