Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は Lua 言語を使用しており、2 進数の長い文字列を持っています。これを配列内の各桁を独自の要素として配列に入れたいと考えています。
local str, out = "01101101010010010", {} for i = 1, #str do out[#out+1] = string.sub(str,i,i) end
out[#out+1] = tonumber(string.sub(str,i,i))配列に文字列ではなく数値を含める場合は、3 行目を に変更します。
out[#out+1] = tonumber(string.sub(str,i,i))