<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="pt-BR">
	<id>https://wiki.tokusatsus.com/index.php?action=history&amp;feed=atom&amp;title=M%C3%B3dulo%3AStr_endswith</id>
	<title>Módulo:Str endswith - Histórico de revisão</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.tokusatsus.com/index.php?action=history&amp;feed=atom&amp;title=M%C3%B3dulo%3AStr_endswith"/>
	<link rel="alternate" type="text/html" href="https://wiki.tokusatsus.com/index.php?title=M%C3%B3dulo:Str_endswith&amp;action=history"/>
	<updated>2026-07-05T10:53:13Z</updated>
	<subtitle>Histórico de revisões para esta página neste wiki</subtitle>
	<generator>MediaWiki 1.45.3</generator>
	<entry>
		<id>https://wiki.tokusatsus.com/index.php?title=M%C3%B3dulo:Str_endswith&amp;diff=2519&amp;oldid=prev</id>
		<title>Tavoraadmin: Importando predefinição/módulo da Wikipédia em português para manter layout</title>
		<link rel="alternate" type="text/html" href="https://wiki.tokusatsus.com/index.php?title=M%C3%B3dulo:Str_endswith&amp;diff=2519&amp;oldid=prev"/>
		<updated>2026-07-05T05:24:36Z</updated>

		<summary type="html">&lt;p&gt;Importando predefinição/módulo da Wikipédia em português para manter layout&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Página nova&lt;/b&gt;&lt;/p&gt;&lt;div&gt;-- This module implements {{str endswith}}.&lt;br /&gt;
&lt;br /&gt;
local TRUE_STRING = &amp;#039;yes&amp;#039;&lt;br /&gt;
local FALSE_STRING = &amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
local p = {}&lt;br /&gt;
&lt;br /&gt;
local function trim(s)&lt;br /&gt;
    return s:match(&amp;#039;^%s*(.-)%s*$&amp;#039;)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.main(frame)&lt;br /&gt;
    local args = frame:getParent().args&lt;br /&gt;
    local s = args[1]&lt;br /&gt;
    local pattern = args[2]&lt;br /&gt;
    if not s or not pattern then&lt;br /&gt;
        -- TRUE_STRING is not the natural choice here, but is needed for&lt;br /&gt;
        -- backwards compatibility.&lt;br /&gt;
        return TRUE_STRING&lt;br /&gt;
    end&lt;br /&gt;
    s = trim(s)&lt;br /&gt;
    pattern = trim(pattern)&lt;br /&gt;
    if pattern == &amp;#039;&amp;#039; then&lt;br /&gt;
        -- All strings end with the empty string.&lt;br /&gt;
        return TRUE_STRING&lt;br /&gt;
    end&lt;br /&gt;
    if mw.ustring.sub(s, 0 - mw.ustring.len(pattern), -1) == pattern then&lt;br /&gt;
        return TRUE_STRING&lt;br /&gt;
    else&lt;br /&gt;
        return FALSE_STRING&lt;br /&gt;
    end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>Tavoraadmin</name></author>
	</entry>
</feed>