view core/src/luan/modules/String.luan @ 320:fed1893821bf

remove global namespace git-svn-id: https://luan-java.googlecode.com/svn/trunk@321 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Fri, 06 Feb 2015 21:54:41 +0000
parents 5e7450ac27f2
children 7f7708e8fdd4
line wrap: on
line source

java
import "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