モジュール:テスト
ナビゲーションに移動
検索に移動
このモジュールについての説明文ページを モジュール:テスト/doc に作成できます
function hundred(frame)
if frame[2] == true then
if string.find(frame[1],frame[2]) == true then
a,b = string.find(frame[1],frame[2])
m = string.char(string.byte(frame[1],a,b))
if a == 1 then
n =""
else
n = string.char(string.byte(frame[1],1,a-1))
end
if b == #frame[1] then
o=""
else
o = string.char(string.byte(frame[1],b+1,#frame[1]-1))
end
return n..m..o
end
end
end