Description
Lua module for text.
Description
UTF-8 aware subset of Lua's string module.
This package is part of HsLua, a Haskell framework built around the embeddable scripting language Lua.
README.md
hslua-module-text
An UTF-8 aware subset of Lua's string module. The functions provided by this module are upper, lower, len, reverse, sub, and toencoding.
Intended usage for this package is to preload it by adding the loader function to package.preload. Note that the Lua package library must have already been loaded before the loader can be added.
Example
loadProg :: Lua Status
loadProg = do
openlibs
preloadModule documenteModule
dostring $ "text = require 'text'\n"
<> "print(text.upper 'hello')"
License
This package is licensed under the MIT license. See LICENSE for details.