0

我的字符串是

text1,text2

我想使用','分割 text1 和 text2。

4

3 回答 3

3

试试这个:

s="text1,text2"
t1,t2=s:match("(.-),(.-)$")
print(t1,t2)
于 2013-05-24T15:29:49.267 回答
0

要获取带有子字符串的迭代器,您可以调用string.gmatch

for i in string.gmatch(example, "%P+") do
  print(i)
end

要将它们放入两个单独的字符串中,您可以调用迭代器;

> iter = string.gmatch(indata, "%P+")
> str1 = iter()
> str2 = iter()
> print (str1)
test1
> print (str2)
test2

如果您希望它们存储在一个数组中,这里有一个完整的讨论如何实现这一点。

@lhf[^,]+在评论中添加了一个更好的模式,我在任何标点符号上分裂,他只在逗号上。

于 2013-05-24T15:23:28.560 回答
0

尝试此页面中给出的功能:

http://lua-users.org/wiki/SplitJoin

于 2013-05-24T16:09:10.350 回答