Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:AeroWikiListTools: Difference between revisions

From Aeronautica Official Wiki
Sqwishyish (talk | contribs)
debugging split_list function
Sqwishyish (talk | contribs)
m Sqwishyish moved page Module:Aero wiki list tools to Module:AeroWikiListTools: Change to camel case
 
(14 intermediate revisions by the same user not shown)
Line 1: Line 1:
-- Created by @Sqwishyish on discord
-- Contact me for any issues
local getArgs = require('Module:Arguments').getArgs
local p = {}
local p = {}


p.split_list = function (input_string, template)
local function makeInvokeFunc(funcName)
return function (frame)
local args = getArgs(frame)
return p[funcName](args)
end
end
 
p.split_list = makeInvokeFunc('_split_list')
p._split_list = function (args)
-- Get arguments passed from function call
local input_string = args[1] -- List string to modify
local template = args[2] -- String to put at each {split}
local missing_string = args[3] -- String to return when either the template or the input is nil
     local new_string = ''
     local new_string = ''
      
      
     if type(input_string) == table then
    -- Check if input string exists
table.concat(input_string, '')
     if input_string == nil or template == nil then
end
return missing_string
     for split in string.gmatch(input_string, '([^, ]+)') do
    end
         new_string = new_string .. template:gsub('{split}', split) .. ', '
   
    -- Check if input string is not 'None'
    if input_string == 'None' then
return 'None'
    end
-- Split string by commas and append the template at each {split} point
     for split in string.gmatch(input_string , '([^,]+)') do
         new_string = new_string .. template:gsub('{split}', split:match('^%s*(.-)%s*$')) .. ' '
    end
   
    -- Remove comma on end of list
    if template:sub(-1) == ',' then
    new_string = new_string:sub(1, -3)
    elseif template:sub(-2) == ', ' then
    new_string = new_string:sub(1, -4)
     end
     end
     return new_string:sub(1, -3)
   
    -- Return the new string to the list
     return new_string
end
end
return p
return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies.