Module:String2: Difference between revisions
From All Skies Encyclopaedia
imported>RexxS (note a possible reference - add ['of'] = 1, ['up'] = 1) |
imported>RexxS (updating: sometimes the string is a wiki-link, so find the first letter and capitalise that) |
||
Line 1: | Line 1: | ||
local p = {} |
local p = {} |
||
p.upper = function( |
p.upper = function(frame) |
||
local s = mw.text.trim( |
local s = mw.text.trim(frame.args[1] or "") |
||
return string.upper( |
return string.upper(s) |
||
end |
end |
||
p.lower = function( |
p.lower = function(frame) |
||
local s = mw.text.trim( |
local s = mw.text.trim(frame.args[1] or "") |
||
return string.lower( |
return string.lower(s) |
||
end |
end |
||
p.sentence = function (frame ) |
p.sentence = function (frame ) |
||
local s = mw.text.trim( frame.args[1] or "" ) |
local s = mw.text.trim( frame.args[1] or "" ) |
||
local |
local letterpos = string.find(s, '%a') |
||
if letterpos then |
|||
⚫ | |||
local first = string.sub(s, 1, letterpos - 1) |
|||
⚫ | |||
local letter = string.sub(s, letterpos, letterpos) |
|||
⚫ | |||
⚫ | |||
else |
|||
return s |
|||
end |
|||
end |
end |
||
Revision as of 15:19, 1 July 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 letterpos = string.find(s, '%a')
if letterpos then
local first = string.sub(s, 1, letterpos - 1)
local letter = string.sub(s, letterpos, letterpos)
local rest = string.sub(s, letterpos + 1)
return first .. string.upper(letter) .. string.lower(rest)
else
return s
end
end
p.title = function (frame )
-- http://grammar.yourdictionary.com/capitalization/rules-for-capitalization-in-titles.html
-- recommended by The U.S. Government Printing Office Style Manual:
-- "Capitalize all words in titles of publications and documents,
-- except a, an, the, at, by, for, in, of, on, to, up, and, as, but, or, and nor."
local alwayslower = {['a'] = 1, ['an'] = 1, ['the'] = 1,
['and'] = 1, ['but'] = 1, ['or'] = 1, ['for'] = 1,
['nor'] = 1, ['on'] = 1, ['in'] = 1, ['at'] = 1, ['to'] = 1,
['from'] = 1, ['by'] = 1, ['of'] = 1, ['up'] = 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] ~= 1 ) 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