字符串是由字母,数字或下划线组成的一串字符
1.单引号间的字符
'Helloworld'
2.双引号间的字符
"Monday"
3.[[]]间的字符
[[Everyone like you]]
字符串常用的方法
-----------------------------------------------------
1.string.upper(args) 将字符全部转化为大写
print (string.upper('hello')) -->HELLO
2.string.lower(args) 将字符全部转化为小写
print (string.lower("Hello")) -->hello
3.string.len(args) 计算字符串的长度
print (string.len('boy")) -->3
4.string.reverse(args) 字符串反转
print (string.reverse("yes")) -->sey
5.string.format(args) 字符串格式化
print (string.format("%s %d","hello",4)) -->hello 4
6.string.rep(args,n) 将字符串复制N次,感觉rep为repeat的英文简称
print (string.rep("boy",3)) -->boyboyboy
7.string.find(str,substr,[init,[end]]) 在字符串中查找子字符串,可指定索引位置,返回其具体位置
print (string.find("helloworld",'el')) -->2 3 要注意 lua语言中索引是从1开始的
8.string.gsub(mainstr,findstr,replacestr,num) findstr为要替换的字符,replacestr为替换的字符,num为要替换的次数,可忽略
print (string.gsub("aaaa","a","z",2)) -->zzaa