<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="fr">
	<id>https://wiki.alakihel.ovh/index.php?action=history&amp;feed=atom&amp;title=Module%3AString</id>
	<title>Module:String - Historique des versions</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.alakihel.ovh/index.php?action=history&amp;feed=atom&amp;title=Module%3AString"/>
	<link rel="alternate" type="text/html" href="https://wiki.alakihel.ovh/index.php?title=Module:String&amp;action=history"/>
	<updated>2026-04-09T22:20:19Z</updated>
	<subtitle>Historique des versions pour cette page sur le wiki</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>https://wiki.alakihel.ovh/index.php?title=Module:String&amp;diff=3393&amp;oldid=prev</id>
		<title>Alakihel : Contenu remplacé par « local p = {}  function p.trim(frame) 	local s = frame.args[1] or &#039;&#039; 	return mw.text.trim(s) end  return p »</title>
		<link rel="alternate" type="text/html" href="https://wiki.alakihel.ovh/index.php?title=Module:String&amp;diff=3393&amp;oldid=prev"/>
		<updated>2025-05-23T17:11:03Z</updated>

		<summary type="html">&lt;p&gt;Contenu remplacé par « local p = {}  function p.trim(frame) 	local s = frame.args[1] or &amp;#039;&amp;#039; 	return mw.text.trim(s) end  return p »&lt;/p&gt;
&lt;a href=&quot;https://wiki.alakihel.ovh/index.php?title=Module:String&amp;amp;diff=3393&amp;amp;oldid=3391&quot;&gt;Voir les modifications&lt;/a&gt;</summary>
		<author><name>Alakihel</name></author>
	</entry>
	<entry>
		<id>https://wiki.alakihel.ovh/index.php?title=Module:String&amp;diff=3391&amp;oldid=prev</id>
		<title>Alakihel : Page créée avec « --[[  This module is intended to provide access to basic string functions.  Most of the functions provided here can be invoked with named parameters, unnamed parameters, or a mixture.  If named parameters are used, Mediawiki will automatically remove any leading or trailing whitespace from the parameter. Depending on the intended use, it may be advantageous to either preserve or remove such whitespace.  Global options 	ignore_errors: If set to &#039;true&#039; or 1, any er... »</title>
		<link rel="alternate" type="text/html" href="https://wiki.alakihel.ovh/index.php?title=Module:String&amp;diff=3391&amp;oldid=prev"/>
		<updated>2025-05-23T17:09:40Z</updated>

		<summary type="html">&lt;p&gt;Page créée avec « --[[  This module is intended to provide access to basic string functions.  Most of the functions provided here can be invoked with named parameters, unnamed parameters, or a mixture.  If named parameters are used, Mediawiki will automatically remove any leading or trailing whitespace from the parameter. Depending on the intended use, it may be advantageous to either preserve or remove such whitespace.  Global options 	ignore_errors: If set to &amp;#039;true&amp;#039; or 1, any er... »&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Nouvelle page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;--[[&lt;br /&gt;
&lt;br /&gt;
This module is intended to provide access to basic string functions.&lt;br /&gt;
&lt;br /&gt;
Most of the functions provided here can be invoked with named parameters,&lt;br /&gt;
unnamed parameters, or a mixture.  If named parameters are used, Mediawiki will&lt;br /&gt;
automatically remove any leading or trailing whitespace from the parameter.&lt;br /&gt;
Depending on the intended use, it may be advantageous to either preserve or&lt;br /&gt;
remove such whitespace.&lt;br /&gt;
&lt;br /&gt;
Global options&lt;br /&gt;
	ignore_errors: If set to &amp;#039;true&amp;#039; or 1, any error condition will result in&lt;br /&gt;
		an empty string being returned rather than an error message.&lt;br /&gt;
&lt;br /&gt;
	error_category: If an error occurs, specifies the name of a category to&lt;br /&gt;
		include with the error message.  The default category is&lt;br /&gt;
		[Category:Errors reported by Module String].&lt;br /&gt;
&lt;br /&gt;
	no_category: If set to &amp;#039;true&amp;#039; or 1, no category will be added if an error&lt;br /&gt;
		is generated.&lt;br /&gt;
&lt;br /&gt;
Unit tests for this module are available at Module:String/tests.&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
local str = {}&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
len&lt;br /&gt;
&lt;br /&gt;
This function returns the length of the target string.&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
{{#invoke:String|len|target_string|}}&lt;br /&gt;
OR&lt;br /&gt;
{{#invoke:String|len|s=target_string}}&lt;br /&gt;
&lt;br /&gt;
Parameters&lt;br /&gt;
	s: The string whose length to report&lt;br /&gt;
&lt;br /&gt;
If invoked using named parameters, Mediawiki will automatically remove any leading or&lt;br /&gt;
trailing whitespace from the target string.&lt;br /&gt;
]]&lt;br /&gt;
function str.len( frame )&lt;br /&gt;
	local new_args = str._getParameters( frame.args, { &amp;#039;s&amp;#039; } )&lt;br /&gt;
	local s = new_args[ &amp;#039;s&amp;#039; ] or &amp;#039;&amp;#039;&lt;br /&gt;
	return mw.ustring.len( s )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
sub&lt;br /&gt;
&lt;br /&gt;
This function returns a substring of the target string at specified indices.&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
{{#invoke:String|sub|target_string|start_index|end_index}}&lt;br /&gt;
OR&lt;br /&gt;
{{#invoke:String|sub|s=target_string|i=start_index|j=end_index}}&lt;br /&gt;
&lt;br /&gt;
Parameters&lt;br /&gt;
	s: The string to return a subset of&lt;br /&gt;
	i: The fist index of the substring to return, defaults to 1.&lt;br /&gt;
	j: The last index of the string to return, defaults to the last character.&lt;br /&gt;
&lt;br /&gt;
The first character of the string is assigned an index of 1.  If either i or j&lt;br /&gt;
is a negative value, it is interpreted the same as selecting a character by&lt;br /&gt;
counting from the end of the string.  Hence, a value of -1 is the same as&lt;br /&gt;
selecting the last character of the string.&lt;br /&gt;
&lt;br /&gt;
If the requested indices are out of range for the given string, an error is&lt;br /&gt;
reported.&lt;br /&gt;
]]&lt;br /&gt;
function str.sub( frame )&lt;br /&gt;
	local new_args = str._getParameters( frame.args, { &amp;#039;s&amp;#039;, &amp;#039;i&amp;#039;, &amp;#039;j&amp;#039; } )&lt;br /&gt;
	local s = new_args[ &amp;#039;s&amp;#039; ] or &amp;#039;&amp;#039;&lt;br /&gt;
	local i = tonumber( new_args[ &amp;#039;i&amp;#039; ] ) or 1&lt;br /&gt;
	local j = tonumber( new_args[ &amp;#039;j&amp;#039; ] ) or -1&lt;br /&gt;
&lt;br /&gt;
	local len = mw.ustring.len( s )&lt;br /&gt;
&lt;br /&gt;
	-- Convert negatives for range checking&lt;br /&gt;
	if i &amp;lt; 0 then&lt;br /&gt;
		i = len + i + 1&lt;br /&gt;
	end&lt;br /&gt;
	if j &amp;lt; 0 then&lt;br /&gt;
		j = len + j + 1&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	if i &amp;gt; len or j &amp;gt; len or i &amp;lt; 1 or j &amp;lt; 1 then&lt;br /&gt;
		return str._error( &amp;#039;String subset index out of range&amp;#039; )&lt;br /&gt;
	end&lt;br /&gt;
	if j &amp;lt; i then&lt;br /&gt;
		return str._error( &amp;#039;String subset indices out of order&amp;#039; )&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	return mw.ustring.sub( s, i, j )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
This function implements that features of {{str sub old}} and is kept in order&lt;br /&gt;
to maintain these older templates.&lt;br /&gt;
]]&lt;br /&gt;
function str.sublength( frame )&lt;br /&gt;
	local i = tonumber( frame.args.i ) or 0&lt;br /&gt;
	local len = tonumber( frame.args.len )&lt;br /&gt;
	return mw.ustring.sub( frame.args.s, i + 1, len and ( i + len ) )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
match&lt;br /&gt;
&lt;br /&gt;
This function returns a substring from the source string that matches a&lt;br /&gt;
specified pattern.&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
{{#invoke:String|match|source_string|pattern_string|start_index|match_number|plain_flag|nomatch_output}}&lt;br /&gt;
OR&lt;br /&gt;
{{#invoke:String|match|s=source_string|pattern=pattern_string|start=start_index&lt;br /&gt;
	|match=match_number|plain=plain_flag|nomatch=nomatch_output}}&lt;br /&gt;
&lt;br /&gt;
Parameters&lt;br /&gt;
	s: The string to search&lt;br /&gt;
	pattern: The pattern or string to find within the string&lt;br /&gt;
	start: The index within the source string to start the search.  The first&lt;br /&gt;
		character of the string has index 1.  Defaults to 1.&lt;br /&gt;
	match: In some cases it may be possible to make multiple matches on a single&lt;br /&gt;
		string.  This specifies which match to return, where the first match is&lt;br /&gt;
		match= 1.  If a negative number is specified then a match is returned&lt;br /&gt;
		counting from the last match.  Hence match = -1 is the same as requesting&lt;br /&gt;
		the last match.  Defaults to 1.&lt;br /&gt;
	plain: A flag indicating that the pattern should be understood as plain&lt;br /&gt;
		text.  Defaults to false.&lt;br /&gt;
	nomatch: If no match is found, output the &amp;quot;nomatch&amp;quot; value rather than an error.&lt;br /&gt;
&lt;br /&gt;
If invoked using named parameters, Mediawiki will automatically remove any leading or&lt;br /&gt;
trailing whitespace from each string.  In some circumstances this is desirable, in&lt;br /&gt;
other cases one may want to preserve the whitespace.&lt;br /&gt;
&lt;br /&gt;
If the match_number or start_index are out of range for the string being queried, then&lt;br /&gt;
this function generates an error.  An error is also generated if no match is found.&lt;br /&gt;
If one adds the parameter ignore_errors=true, then the error will be suppressed and&lt;br /&gt;
an empty string will be returned on any failure.&lt;br /&gt;
&lt;br /&gt;
For information on constructing Lua patterns, a form of [regular expression], see:&lt;br /&gt;
&lt;br /&gt;
* http://www.lua.org/manual/5.1/manual.html#5.4.1&lt;br /&gt;
* http://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#Patterns&lt;br /&gt;
* http://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#Ustring_patterns&lt;br /&gt;
&lt;br /&gt;
]]&lt;br /&gt;
function str.match( frame )&lt;br /&gt;
	local new_args = str._getParameters( frame.args, { &amp;#039;s&amp;#039;, &amp;#039;pattern&amp;#039;, &amp;#039;start&amp;#039;, &amp;#039;match&amp;#039;, &amp;#039;plain&amp;#039;, &amp;#039;nomatch&amp;#039; } )&lt;br /&gt;
	local s = new_args[ &amp;#039;s&amp;#039; ] or &amp;#039;&amp;#039;&lt;br /&gt;
	local start = tonumber( new_args[ &amp;#039;start&amp;#039; ] ) or 1&lt;br /&gt;
	local plain_flag = str._getBoolean( new_args[ &amp;#039;plain&amp;#039; ] or false )&lt;br /&gt;
	local pattern = new_args[ &amp;#039;pattern&amp;#039; ] or &amp;#039;&amp;#039;&lt;br /&gt;
	local match_index = math.floor( tonumber( new_args[ &amp;#039;match&amp;#039; ] ) or 1 )&lt;br /&gt;
	local nomatch = new_args[ &amp;#039;nomatch&amp;#039; ]&lt;br /&gt;
&lt;br /&gt;
	if s == &amp;#039;&amp;#039; then&lt;br /&gt;
		-- return str._error( &amp;#039;Target string is empty&amp;#039; )&lt;br /&gt;
	end&lt;br /&gt;
	if pattern == &amp;#039;&amp;#039; then&lt;br /&gt;
		return str._error( &amp;#039;Pattern string is empty&amp;#039; )&lt;br /&gt;
	end&lt;br /&gt;
	if math.abs( start ) &amp;lt; 1 or math.abs( start ) &amp;gt; mw.ustring.len( s ) then&lt;br /&gt;
		-- return str._error( &amp;#039;Requested start is out of range&amp;#039; )&lt;br /&gt;
	end&lt;br /&gt;
	if match_index == 0 then&lt;br /&gt;
		return str._error( &amp;#039;Match index is out of range&amp;#039; )&lt;br /&gt;
	end&lt;br /&gt;
	if plain_flag then&lt;br /&gt;
		pattern = str._escapePattern( pattern )&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	local result&lt;br /&gt;
	if match_index == 1 then&lt;br /&gt;
		-- Find first match is simple case&lt;br /&gt;
		result = mw.ustring.match( s, pattern, start )&lt;br /&gt;
	else&lt;br /&gt;
		if start &amp;gt; 1 then&lt;br /&gt;
			s = mw.ustring.sub( s, start )&lt;br /&gt;
		end&lt;br /&gt;
&lt;br /&gt;
		local iterator = mw.ustring.gmatch( s, pattern )&lt;br /&gt;
		if match_index &amp;gt; 0 then&lt;br /&gt;
			-- Forward search&lt;br /&gt;
			for w in iterator do&lt;br /&gt;
				match_index = match_index - 1&lt;br /&gt;
				if match_index == 0 then&lt;br /&gt;
					result = w&lt;br /&gt;
					break&lt;br /&gt;
				end&lt;br /&gt;
			end&lt;br /&gt;
		else&lt;br /&gt;
			-- Reverse search&lt;br /&gt;
			local result_table = {}&lt;br /&gt;
			local count = 1&lt;br /&gt;
			for w in iterator do&lt;br /&gt;
				result_table[ count ] = w&lt;br /&gt;
				count = count + 1&lt;br /&gt;
			end&lt;br /&gt;
&lt;br /&gt;
			result = result_table[ count + match_index ]&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	if result == nil then&lt;br /&gt;
		if nomatch == nil then&lt;br /&gt;
			return str._error( &amp;#039;Match not found&amp;#039; )&lt;br /&gt;
		else&lt;br /&gt;
			return nomatch&lt;br /&gt;
		end&lt;br /&gt;
	else&lt;br /&gt;
		return result&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
pos&lt;br /&gt;
&lt;br /&gt;
This function returns a single character from the target string at position pos.&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
{{#invoke:String|pos|target_string|index_value}}&lt;br /&gt;
OR&lt;br /&gt;
{{#invoke:String|pos|target=target_string|pos=index_value}}&lt;br /&gt;
&lt;br /&gt;
Parameters&lt;br /&gt;
	target: The string to search&lt;br /&gt;
	pos: The index for the character to return&lt;br /&gt;
&lt;br /&gt;
If invoked using named parameters, Mediawiki will automatically remove any leading or&lt;br /&gt;
trailing whitespace from the target string.  In some circumstances this is desirable, in&lt;br /&gt;
other cases one may want to preserve the whitespace.&lt;br /&gt;
&lt;br /&gt;
The first character has an index value of 1.&lt;br /&gt;
&lt;br /&gt;
If one requests a negative value, this function will select a character by counting backwards&lt;br /&gt;
from the end of the string.  In other words pos = -1 is the same as asking for the last character.&lt;br /&gt;
&lt;br /&gt;
A requested value of zero, or a value greater than the length of the string returns an error.&lt;br /&gt;
]]&lt;br /&gt;
function str.pos( frame )&lt;br /&gt;
	local new_args = str._getParameters( frame.args, { &amp;#039;target&amp;#039;, &amp;#039;pos&amp;#039; } )&lt;br /&gt;
	local target_str = new_args[ &amp;#039;target&amp;#039; ] or &amp;#039;&amp;#039;&lt;br /&gt;
	local pos = tonumber( new_args[ &amp;#039;pos&amp;#039; ] ) or 0&lt;br /&gt;
&lt;br /&gt;
	if pos == 0 or math.abs( pos ) &amp;gt; mw.ustring.len( target_str ) then&lt;br /&gt;
		return str._error( &amp;#039;String index out of range&amp;#039; )&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	return mw.ustring.sub( target_str, pos, pos )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
find&lt;br /&gt;
&lt;br /&gt;
This function allows one to search for a target string or pattern within another&lt;br /&gt;
string.&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
{{#invoke:String|find|source_str|target_string|start_index|plain_flag}}&lt;br /&gt;
OR&lt;br /&gt;
{{#invoke:String|find|source=source_str|target=target_str|start=start_index|plain=plain_flag}}&lt;br /&gt;
&lt;br /&gt;
Parameters&lt;br /&gt;
	source: The string to search&lt;br /&gt;
	target: The string or pattern to find within source&lt;br /&gt;
	start: The index within the source string to start the search, defaults to 1&lt;br /&gt;
	plain: Boolean flag indicating that target should be understood as plain&lt;br /&gt;
		text and not as a Lua style regular expression, defaults to true&lt;br /&gt;
&lt;br /&gt;
If invoked using named parameters, Mediawiki will automatically remove any leading or&lt;br /&gt;
trailing whitespace from the parameter.  In some circumstances this is desirable, in&lt;br /&gt;
other cases one may want to preserve the whitespace.&lt;br /&gt;
&lt;br /&gt;
This function returns the first index &amp;gt;= &amp;quot;start&amp;quot; where &amp;quot;target&amp;quot; can be found&lt;br /&gt;
within &amp;quot;source&amp;quot;.  Indices are 1-based.  If &amp;quot;target&amp;quot; is not found, then this&lt;br /&gt;
function returns 0.  If either &amp;quot;source&amp;quot; or &amp;quot;target&amp;quot; are missing / empty, this&lt;br /&gt;
function also returns 0.&lt;br /&gt;
&lt;br /&gt;
This function should be safe for UTF-8 strings.&lt;br /&gt;
]]&lt;br /&gt;
function str.find( frame )&lt;br /&gt;
	local new_args = str._getParameters( frame.args, { &amp;#039;source&amp;#039;, &amp;#039;target&amp;#039;, &amp;#039;start&amp;#039;, &amp;#039;plain&amp;#039;, &amp;#039;trim&amp;#039;, &amp;#039;default&amp;#039; } )&lt;br /&gt;
	local source_str = new_args[ &amp;#039;source&amp;#039; ] or &amp;#039;&amp;#039;&lt;br /&gt;
	local pattern = new_args[ &amp;#039;target&amp;#039; ] or &amp;#039;&amp;#039;&lt;br /&gt;
	local start_pos = tonumber( new_args[ &amp;#039;start&amp;#039; ] ) or 1&lt;br /&gt;
	local plain = new_args[ &amp;#039;plain&amp;#039; ] or true&lt;br /&gt;
	local trim = new_args[ &amp;#039;trim&amp;#039; ] or false&lt;br /&gt;
	local default = new_args[ &amp;#039;default&amp;#039; ]&lt;br /&gt;
	if default == &amp;#039;empty&amp;#039; then default = &amp;#039;&amp;#039; else default = tonumber( default ) or 0 end&lt;br /&gt;
&lt;br /&gt;
	if source_str == &amp;#039;&amp;#039; or pattern == &amp;#039;&amp;#039; then&lt;br /&gt;
		return default&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	plain = str._getBoolean( plain )&lt;br /&gt;
	trim = str._getBoolean( trim )&lt;br /&gt;
&lt;br /&gt;
	if trim then source_str = mw.text.trim( source_str ) end&lt;br /&gt;
&lt;br /&gt;
	local start = mw.ustring.find( source_str, pattern, start_pos, plain )&lt;br /&gt;
	if start == nil then&lt;br /&gt;
		start = default&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	return start&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
replace&lt;br /&gt;
&lt;br /&gt;
This function allows one to replace a target string or pattern within another&lt;br /&gt;
string.&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
{{#invoke:String|replace|source_str|pattern_string|replace_string|replacement_count|plain_flag}}&lt;br /&gt;
OR&lt;br /&gt;
{{#invoke:String|replace|source=source_string|pattern=pattern_string|replace=replace_string|&lt;br /&gt;
   count=replacement_count|plain=plain_flag}}&lt;br /&gt;
&lt;br /&gt;
Parameters&lt;br /&gt;
	source: The string to search&lt;br /&gt;
	pattern: The string or pattern to find within source&lt;br /&gt;
	replace: The replacement text&lt;br /&gt;
	count: The number of occurences to replace, defaults to all.&lt;br /&gt;
	plain: Boolean flag indicating that pattern should be understood as plain&lt;br /&gt;
		text and not as a Lua style regular expression, defaults to true&lt;br /&gt;
]]&lt;br /&gt;
function str.replace( frame )&lt;br /&gt;
	local new_args = str._getParameters( frame.args, { &amp;#039;source&amp;#039;, &amp;#039;pattern&amp;#039;, &amp;#039;replace&amp;#039;, &amp;#039;count&amp;#039;, &amp;#039;plain&amp;#039; } )&lt;br /&gt;
	local source_str = new_args[ &amp;#039;source&amp;#039; ] or &amp;#039;&amp;#039;&lt;br /&gt;
	local pattern = new_args[ &amp;#039;pattern&amp;#039; ] or &amp;#039;&amp;#039;&lt;br /&gt;
	local replace = new_args[ &amp;#039;replace&amp;#039; ] or &amp;#039;&amp;#039;&lt;br /&gt;
	local count = tonumber( new_args[ &amp;#039;count&amp;#039; ] )&lt;br /&gt;
	local plain = new_args[ &amp;#039;plain&amp;#039; ] or true&lt;br /&gt;
&lt;br /&gt;
	if source_str == &amp;#039;&amp;#039; or pattern == &amp;#039;&amp;#039; then&lt;br /&gt;
		return source_str&lt;br /&gt;
	end&lt;br /&gt;
	plain = str._getBoolean( plain )&lt;br /&gt;
&lt;br /&gt;
	if plain then&lt;br /&gt;
		pattern = str._escapePattern( pattern )&lt;br /&gt;
		replace = string.gsub( replace, &amp;quot;%%&amp;quot;, &amp;quot;%%%%&amp;quot; ); --Only need to escape replacement sequences.&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	local result&lt;br /&gt;
&lt;br /&gt;
	if count ~= nil then&lt;br /&gt;
		result = mw.ustring.gsub( source_str, pattern, replace, count )&lt;br /&gt;
	else&lt;br /&gt;
		result = mw.ustring.gsub( source_str, pattern, replace )&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	return result&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
rep&lt;br /&gt;
&lt;br /&gt;
Cette fonction retourne la concaténation de son premier paramètre n fois où n est le deuxième paramètre (fonction &amp;quot;rep&amp;quot; ou &amp;quot;repeat&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
Usage :&lt;br /&gt;
{{#invoke:String|rep|s|n}}&lt;br /&gt;
&lt;br /&gt;
Paramètres :&lt;br /&gt;
	la chaîne &amp;#039;s&amp;#039; dont on veut répeter&lt;br /&gt;
	l&amp;#039;entier &amp;#039;n&amp;#039; le nombre d&amp;#039;itération&lt;br /&gt;
]]&lt;br /&gt;
function str.rep( frame )&lt;br /&gt;
	local new_args = str._getParameters( frame.args, { &amp;#039;s&amp;#039;, &amp;#039;n&amp;#039; } )&lt;br /&gt;
	local s = new_args[ &amp;#039;s&amp;#039; ] or &amp;#039;&amp;#039;&lt;br /&gt;
	local n = tonumber( new_args[ &amp;#039;n&amp;#039; ] ) or 1&lt;br /&gt;
	return mw.ustring.rep( s, n )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
count&lt;br /&gt;
This function counts the number of occurrences of one string in another.&lt;br /&gt;
]]&lt;br /&gt;
function str.count( frame )&lt;br /&gt;
	local args = str._getParameters( frame.args, { &amp;#039;source&amp;#039;, &amp;#039;pattern&amp;#039;, &amp;#039;plain&amp;#039; } )&lt;br /&gt;
	local source = args.source or &amp;#039;&amp;#039;&lt;br /&gt;
	local pattern = args.pattern or &amp;#039;&amp;#039;&lt;br /&gt;
	local plain = str._getBoolean( args.plain or true )&lt;br /&gt;
	if plain then&lt;br /&gt;
		pattern = str._escapePattern( pattern )&lt;br /&gt;
	end&lt;br /&gt;
	local _, count = mw.ustring.gsub( source, pattern, &amp;#039;&amp;#039; )&lt;br /&gt;
	return count&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
non_latin&lt;br /&gt;
Retire tous les caractères latins d&amp;#039;une chaîne de caractères. Rend la chaîne vide &amp;quot;&amp;quot; si le paramètre est un texte entièrement latin.&lt;br /&gt;
Paramètre : source&lt;br /&gt;
]]&lt;br /&gt;
function str.non_latin( frame )&lt;br /&gt;
	local args = str._getParameters( frame.args, { &amp;#039;source&amp;#039; } )&lt;br /&gt;
    local s = args.source or &amp;#039;&amp;#039;&lt;br /&gt;
    s = mw.text.decode( s, true )&lt;br /&gt;
    s = mw.ustring.lower( mw.ustring.gsub( mw.ustring.toNFD( s ), &amp;quot;[^%w]&amp;quot;, &amp;quot;&amp;quot; ) )&lt;br /&gt;
    s = mw.ustring.gsub( s, &amp;quot;[!-˿Ḁ-ỿ]&amp;quot;, &amp;quot;&amp;quot; ) -- U+0021-02FF, U+1E00-1EFF&lt;br /&gt;
    return s&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
Helper function that populates the argument list given that user may need to use a mix of&lt;br /&gt;
named and unnamed parameters.  This is relevant because named parameters are not&lt;br /&gt;
identical to unnamed parameters due to string trimming, and when dealing with strings&lt;br /&gt;
we sometimes want to either preserve or remove that whitespace depending on the application.&lt;br /&gt;
]]&lt;br /&gt;
function str._getParameters( frame_args, arg_list )&lt;br /&gt;
	local new_args = {}&lt;br /&gt;
	local index = 1&lt;br /&gt;
&lt;br /&gt;
	for i = 1, #arg_list do&lt;br /&gt;
		local arg = arg_list[ i ]&lt;br /&gt;
		local value = frame_args[ arg ]&lt;br /&gt;
		if value == nil then&lt;br /&gt;
			value = frame_args[ index ]&lt;br /&gt;
			index = index + 1&lt;br /&gt;
		end&lt;br /&gt;
		new_args[ arg ] = value&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	return new_args&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
Helper function to handle error messages.&lt;br /&gt;
]]&lt;br /&gt;
function str._error( error_msg )&lt;br /&gt;
	local frame = mw.getCurrentFrame()&lt;br /&gt;
	local error_category = frame.args.error_category or &amp;#039;Errors reported by Module String&amp;#039;&lt;br /&gt;
	local ignore_errors = frame.args.ignore_errors or false&lt;br /&gt;
	local no_category = frame.args.no_category or false&lt;br /&gt;
&lt;br /&gt;
	if str._getBoolean( ignore_errors ) then&lt;br /&gt;
		return &amp;#039;&amp;#039;&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	local error_str = &amp;#039;&amp;lt;strong class=&amp;quot;error&amp;quot;&amp;gt;String Module Error: &amp;#039; .. error_msg .. &amp;#039;&amp;lt;/strong&amp;gt;&amp;#039;&lt;br /&gt;
	if error_category ~= &amp;#039;&amp;#039; and not str._getBoolean( no_category ) then&lt;br /&gt;
		error_str = &amp;#039;[[Category:&amp;#039; .. error_category .. &amp;#039;]]&amp;#039; .. error_str&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	return error_str&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
Helper Function to interpret boolean strings&lt;br /&gt;
]]&lt;br /&gt;
function str._getBoolean( boolean_str )&lt;br /&gt;
	local boolean_value&lt;br /&gt;
&lt;br /&gt;
	if type( boolean_str ) == &amp;#039;string&amp;#039; then&lt;br /&gt;
		boolean_str = boolean_str:lower()&lt;br /&gt;
		if boolean_str == &amp;#039;false&amp;#039; or boolean_str == &amp;#039;no&amp;#039; or boolean_str == &amp;#039;0&amp;#039;&lt;br /&gt;
				or boolean_str == &amp;#039;&amp;#039; then&lt;br /&gt;
			boolean_value = false&lt;br /&gt;
		else&lt;br /&gt;
			boolean_value = true&lt;br /&gt;
		end&lt;br /&gt;
	elseif type( boolean_str ) == &amp;#039;boolean&amp;#039; then&lt;br /&gt;
		boolean_value = boolean_str&lt;br /&gt;
	else&lt;br /&gt;
		error( &amp;#039;No boolean value found&amp;#039; )&lt;br /&gt;
	end&lt;br /&gt;
	return boolean_value&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
Helper function that escapes all pattern characters so that they will be treated&lt;br /&gt;
as plain text.&lt;br /&gt;
]]&lt;br /&gt;
function str._escapePattern( pattern_str )&lt;br /&gt;
	return ( string.gsub( pattern_str, &amp;quot;([%(%)%.%%%+%-%*%?%[%^%$%]])&amp;quot;, &amp;quot;%%%1&amp;quot; ) )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return str&lt;/div&gt;</summary>
		<author><name>Alakihel</name></author>
	</entry>
</feed>