mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-05 06:53:52 +01:00
added worldeditadditions.tochars
This commit is contained in:
parent
3c7cd38459
commit
622ea7a683
@ -55,3 +55,23 @@ function worldeditadditions.split(text, pattern, plain)
|
|||||||
end
|
end
|
||||||
return ret
|
return ret
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- Split into table of characters.
|
||||||
|
-- @param text string The string to iterate over
|
||||||
|
-- @param s bool Sort characters
|
||||||
|
-- @param d bool Remove duplicate characters
|
||||||
|
-- @returns table A sequence table containing the substrings
|
||||||
|
function worldeditadditions.tochars(text,s,d)
|
||||||
|
--function tochars(text,s,d)
|
||||||
|
t, set = {}, {}
|
||||||
|
if d then
|
||||||
|
text:gsub(".",function(c) set[c] = true end)
|
||||||
|
for k,v in pairs(set) do table.insert(t,k) end
|
||||||
|
else
|
||||||
|
text:gsub(".",function(c) table.insert(t,c) end)
|
||||||
|
end
|
||||||
|
|
||||||
|
if s then table.sort(t) end
|
||||||
|
|
||||||
|
return t
|
||||||
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user