<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="zh-Hans-CN">
	<id>https://www.wikiw.cn/index.php?action=history&amp;feed=atom&amp;title=%E6%A8%A1%E5%9D%97%3AOrdinal</id>
	<title>模块:Ordinal - 版本历史</title>
	<link rel="self" type="application/atom+xml" href="https://www.wikiw.cn/index.php?action=history&amp;feed=atom&amp;title=%E6%A8%A1%E5%9D%97%3AOrdinal"/>
	<link rel="alternate" type="text/html" href="https://www.wikiw.cn/index.php?title=%E6%A8%A1%E5%9D%97:Ordinal&amp;action=history"/>
	<updated>2026-04-08T23:48:07Z</updated>
	<subtitle>本wiki上该页面的版本历史</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>https://www.wikiw.cn/index.php?title=%E6%A8%A1%E5%9D%97:Ordinal&amp;diff=2340&amp;oldid=prev</id>
		<title>imported&gt;Xiplus-abot：​已更改“Module:Ordinal”的保护设置：​高風險模板：5022引用&lt;!-- 機器人3 --&gt;（[编辑=仅允许模板编辑员]（无限期）[移动=仅允许模板编辑员]（无限期））</title>
		<link rel="alternate" type="text/html" href="https://www.wikiw.cn/index.php?title=%E6%A8%A1%E5%9D%97:Ordinal&amp;diff=2340&amp;oldid=prev"/>
		<updated>2023-09-18T20:50:48Z</updated>

		<summary type="html">&lt;p&gt;已更改“&lt;a href=&quot;/index.php?title=%E6%A8%A1%E5%9D%97:Ordinal&quot; title=&quot;模块:Ordinal&quot;&gt;Module:Ordinal&lt;/a&gt;”的保护设置：​高風險模板：5022引用&amp;lt;!-- &lt;a href=&quot;/index.php?title=%E7%94%A8%E6%88%B7:Xiplus-abot/task/3&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;用户:Xiplus-abot/task/3（页面不存在）&quot;&gt;機器人3&lt;/a&gt; --&amp;gt;（[编辑=仅允许模板编辑员]（无限期）[移动=仅允许模板编辑员]（无限期））&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新页面&lt;/b&gt;&lt;/p&gt;&lt;div&gt;--[[  &lt;br /&gt;
 &lt;br /&gt;
This template will add the appropriate ordinal suffix to a given integer.&lt;br /&gt;
 &lt;br /&gt;
Please do not modify this code without applying the changes first at&lt;br /&gt;
Module:Ordinal/sandbox and testing at Module:Ordinal/sandbox/testcases and&lt;br /&gt;
Module talk:Ordinal/sandbox/testcases.&lt;br /&gt;
 &lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
local p = {}&lt;br /&gt;
&lt;br /&gt;
local yesno     = require(&amp;#039;Module:Yesno&amp;#039;) -- boolean value interpretation&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
This function converts an integer value into a numeral followed by ordinal indicator.&lt;br /&gt;
The output string might contain HTML tags.&lt;br /&gt;
 &lt;br /&gt;
Usage:&lt;br /&gt;
{{#invoke:Ordinal|ordinal|1=|2=|sup=}}&lt;br /&gt;
{{#invoke:Ordinal|ordinal}} - uses the caller&amp;#039;s parameters&lt;br /&gt;
 &lt;br /&gt;
Parameters&lt;br /&gt;
    1: Any number or string.&lt;br /&gt;
    2: Set to &amp;quot;d&amp;quot; if the module should display &amp;quot;d&amp;quot; instead of &amp;quot;nd&amp;quot; and &amp;quot;rd&amp;quot;.&lt;br /&gt;
    sup: Set to yes/no to toggle superscript ordinal suffix.&lt;br /&gt;
]]&lt;br /&gt;
function p.ordinal(frame)&lt;br /&gt;
	local args = frame.args&lt;br /&gt;
    if args[1] == nil then&lt;br /&gt;
        args = frame:getParent().args&lt;br /&gt;
    end&lt;br /&gt;
    if args[1] == nil then&lt;br /&gt;
    	args[1] = &amp;quot;{{{1}}}&amp;quot;&lt;br /&gt;
    end&lt;br /&gt;
    return p._ordinal(args[1], (args[2] == &amp;#039;d&amp;#039;), yesno(args.sup))&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p._ordinal(n, d, sup)&lt;br /&gt;
	local x = tonumber(mw.ustring.match(n, &amp;quot;(%d*)%W*$&amp;quot;))&lt;br /&gt;
	local suffix = &amp;quot;th&amp;quot;&lt;br /&gt;
	-- If tonumber(n) worked:&lt;br /&gt;
	if x then&lt;br /&gt;
		local mod10 = math.abs(x) % 10&lt;br /&gt;
		local mod100 = math.abs(x) % 100&lt;br /&gt;
		if     mod10 == 1 and mod100 ~= 11 then&lt;br /&gt;
			suffix = &amp;quot;st&amp;quot;&lt;br /&gt;
		elseif mod10 == 2 and mod100 ~= 12 then&lt;br /&gt;
			if d then suffix = &amp;quot;d&amp;quot; else suffix = &amp;quot;nd&amp;quot; end&lt;br /&gt;
		elseif mod10 == 3 and mod100 ~= 13 then&lt;br /&gt;
			if d then suffix = &amp;quot;d&amp;quot; else suffix = &amp;quot;rd&amp;quot; end&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	if sup then&lt;br /&gt;
		suffix = &amp;quot;&amp;lt;sup&amp;gt;&amp;quot; .. suffix .. &amp;quot;&amp;lt;/sup&amp;gt;&amp;quot;&lt;br /&gt;
	end&lt;br /&gt;
	return n .. suffix&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>imported&gt;Xiplus-abot</name></author>
	</entry>
</feed>