view core/src/luan/modules/String.luan @ 340:fb18724521d2

rename Html.simple_html_page to simply_html_page
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 31 Mar 2015 02:35:40 -0600
parents 7f7708e8fdd4
children cbb94a7c7a9e
line wrap: on
line source

java()
local StringLuan = require "java:luan.modules.StringLuan"

unicode = StringLuan.unicode
char = StringLuan.char_
concat = StringLuan.concat
find = StringLuan.find
format = StringLuan.format
gmatch = StringLuan.gmatch
gsub = StringLuan.gsub
len = StringLuan.len
lower = StringLuan.lower
match = StringLuan.match
rep = StringLuan.rep
reverse = StringLuan.reverse
sub = StringLuan.sub
trim = StringLuan.trim
upper = StringLuan.upper