Package
lua-lpegVersion
0.12.2-1Priority
optionalSection
interpretersOrigin
UbuntuMaintainer
Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>Original Maintainer
Enrico Tassi <gareuselesinge@debian.org>Bugs
https://bugs.launchpad.net/ubuntu/+filebugInstalled Size
171 kBProvides
lua5.1-lpeg, lua5.2-lpeg, lua5.3-lpegDepends
libc6 (>= 2.14)Homepage
http://www.inf.puc-rio.br/~roberto/lpeg.htmlLua Versions
5.2 5.1 5.3Supported
5yDownload Size
28.3 kBAPT Manual Installed
noAPT Sources
http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 PackagesDescription
LPeg library for the Lua languageLPeg is a new pattern-matching library for Lua, based on Parsing Expression
Grammars (PEGs). PEGs look similar to regular expressions or context-free
grammars in Backus-Naur form (BNF) notation. PEGs make a good replacement for
regular expressions, because they are strictly more powerful. For example, a
regular expression inherently cannot find matched pairs of parentheses, because
it is not recursive, but a PEG can.