-1
    testA = "test.test test.test"
    local t1 = {}
    for X in string.gfind (testA, "[^ ]+") do
    table.insert (t1 ,X)
    end
    local first = table.concat(t1, "", 1, 1);

    --output/first test.test

    testA = "11.11.11.11 test.test"
    local t2 = {}
    for X in string.gfind (testA, "[^ ]+") do
    table.insert (t2 ,X)
    end
    local first = table.concat(t2, "", 1, 1);

    --output/first 11.11.11.11

    testA = "100.100.100.100  test.test"
    local t3 = {}
    for X in string.gfind (testA, "[^ ]+") do
    table.insert (t3 ,X)
    end
    local first = table.concat(t3, "", 1, 1);

    --output/first 100.100.100.100    test.test

有谁知道为什么第三个项目不会与 gfind 分开?,无法弄清楚为什么
它适用于两个字符串而不是第三个。

4

1 回答 1

1

您的问题是制表符与空格不同。如果要跳过所有空白字符,则实际上需要跳过空白字符,而不仅仅是常规空格:

string.gfind (testA, "[%S]+")
于 2012-06-21T05:39:24.657 回答