Module:String2: Difference between revisions
From All Skies Encyclopaedia
imported>RexxS (create module to supply simple string case functions - upper, lower, sentence; intended for use in infoboxes) |
imported>Frietjes (testing a titlecase function, ... not sure if this is tractable given number of articles, prepositions, etc which are always lower, but starting with a shortened list for testing) |
||
Line 16: | Line 16: | ||
local strRest = string.sub( s, 2 ) |
local strRest = string.sub( s, 2 ) |
||
return string.upper( strFirst ) .. string.lower( strRest ) |
return string.upper( strFirst ) .. string.lower( strRest ) |
||
end |
|||
p.title = function (frame ) |
|||
local alwayslower = {['a'] = 1, ['an'] = 1, ['the'] = 1, |
|||
['and'] = 1, ['but'] = 1, ['or'] = 1, ['for'] = 1, |
|||
['nor'] = 1, ['on'] = 1, ['at'] = 1, ['to'] = 1, |
|||
['from'] = 1, ['by'] = 1 } |
|||
local res = '' |
|||
local s = mw.text.trim( frame.args[1] or "" ) |
|||
local words = mw.text.split( s, " ") |
|||
for i, s in ipairs(words) do |
|||
s = string.lower( s ) |
|||
if( i > 1 ) then |
|||
if( alwayslower[s] ~= nil ) then |
|||
s = mw.getContentLanguage():ucfirst(s) |
|||
end |
|||
else |
|||
s = mw.getContentLanguage():ucfirst(s) |
|||
end |
|||
words[i] = s |
|||
end |
|||
return table.concat(words, " ") |
|||
end |
end |
||
Revision as of 17:11, 8 April 2016
Documentation for this module may be created at Module:String2/doc
local p = {}
p.upper = function( frame )
local s = mw.text.trim( frame.args[1] or "" )
return string.upper( s )
end
p.lower = function( frame )
local s = mw.text.trim( frame.args[1] or "" )
return string.lower( s )
end
p.sentence = function (frame )
local s = mw.text.trim( frame.args[1] or "" )
local strFirst = string.sub( s, 1, 1 )
local strRest = string.sub( s, 2 )
return string.upper( strFirst ) .. string.lower( strRest )
end
p.title = function (frame )
local alwayslower = {['a'] = 1, ['an'] = 1, ['the'] = 1,
['and'] = 1, ['but'] = 1, ['or'] = 1, ['for'] = 1,
['nor'] = 1, ['on'] = 1, ['at'] = 1, ['to'] = 1,
['from'] = 1, ['by'] = 1 }
local res = ''
local s = mw.text.trim( frame.args[1] or "" )
local words = mw.text.split( s, " ")
for i, s in ipairs(words) do
s = string.lower( s )
if( i > 1 ) then
if( alwayslower[s] ~= nil ) then
s = mw.getContentLanguage():ucfirst(s)
end
else
s = mw.getContentLanguage():ucfirst(s)
end
words[i] = s
end
return table.concat(words, " ")
end
return p