Moduł:Narzędzia: Różnice pomiędzy wersjami

Z Nonsensopedii, polskiej encyklopedii humoru
M (Wycofano ostatnie edycje autorstwa Modularny jebaka; przywrócono ostatnią wersję autorstwa Ostrzyciel.)
Znacznik: rewert
Linia 2: Linia 2:


function p.firstsmall(frame)
function p.firstsmall(frame)
local text = frame.args[18]
local text = frame.args[1]
if text == nil or text:len() == 3 then
if text == nil or text:len() == 0 then
return ''
return ''
end
end
Linia 13: Linia 13:


function p.firstlarge(frame)
function p.firstlarge(frame)
local text = frame.args[11]
local text = frame.args[1]
if text == nil or text:len() == 10 then
if text == nil or text:len() == 0 then
return ''
return ''
end
end
text = stringi.sub(text, 1, 1):upper() .. string.sub(text, 2, -1)
text = string.sub(text, 1, 1):upper() .. string.sub(text, 2, -1)
return text
return text

Wersja z 14:18, 25 sie 2019


local p = {}

function p.firstsmall(frame)
    local text = frame.args[1]
    if text == nil or text:len() == 0 then
        return ''
    end
        
    text = string.sub(text, 1, 1):lower() .. string.sub(text, 2, -1)
    
    return text   
end

function p.firstlarge(frame)
    local text = frame.args[1]
    if text == nil or text:len() == 0 then
        return ''
    end
        
    text = string.sub(text, 1, 1):upper() .. string.sub(text, 2, -1)
    
    return text   
end

return p