|
On Mon, Jan 27, 2014 at 9:44 AM, Xavier Wang <weasley.wx@gmail.com> wrote:github repo: https://github.com/starwing/luautf8UTF-8 module for Lua 5.x========================This module is add UTF-8 support to Lua.It use data extracted from Unicode Character Database[1], and tested on Lua5.2.3 and LuaJIT.parseucd.lua is a pure Lua script generate unidata.h, to support convertcharacters and check characters' category.It mainly used to compatible with Lua's own string module, it passed allstring and pattern matching test in lua test suite[2].It also add some useful routines against UTF-8 features, some like:- a convenient interface to escape Unicode sequence in string.- string insert/remove, since UTF-8 substring extract may expensive.- calculate Unicode width, useful when implement e.g. console emulator.- a useful interface to translate Unicode offset and byte offset.This looks cool. You may wish to specify a license to allow others to use it.Marc