String exploding (日本語)

この関数は Lua に文字列を弾き出す機能を追加します。

function string.explode(str, div)
    assert(type(str) == "string" and type(div) == "string", "invalid arguments")
    local o = {}
    while true do
        local pos1,pos2 = str:find(div)
        if not pos1 then
            o[#o+1] = str
            break
        end
        o[#o+1],str = str:sub(1,pos1-1),str:sub(pos2+1)
    end
    return o
end

用例:

tbl = string.explode("foo bar", " ")
print(tbl[1]) --> foo
-- 文字列テーブルへ弾き出されたものを追加したので、これをこうすることができます:
str = "foo bar"
tbl2 = str:explode(" ")
print(tbl2[2]) --> bar
-- 元の文字列を復元するために、 Lua の table.concat を使用することができます:
original = table.concat(tbl, " ")
print(original) --> foo bar