Lua中操作字符串的基本方法整理
Lua是一种轻量级、高效、可嵌入的脚本语言,其具有简单的基本数据类型和语言结构,方便字符串的操作。
字符串连接操作
Lua中字符串的连接使用..
符号,例如:
local str1 = "Hello"
local str2 = "World"
local str3 = str1.. str2
print(str3)
输出结果为:HelloWorld
。
字符串查找操作
字符串查找使用string.find
函数,例如:
local str4 = "Hello Lua"
local str5 = "Lua"
local n, m = string.find(str4, str5)
print(n, m)
输出结果为:7 9
。其中,7表示匹配到的第一个字符的位置,9表示匹配到的最后一个字符的位置。
字符串替换操作
字符串替换使用string.gsub
函数,例如:
local str6 = "Please enter 123"
local str7 = string.gsub(str6, "123", "456")
print(str7)
输出结果为:Please enter 456
。
以上为Lua中字符串的基本操作方法,有需要者可以结合文档进一步学习和掌握。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:Lua中操作字符串的基本方法整理 - Python技术站