Editing
Module:String/doc
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
{{Wikipedia|Module:String/doc}} The '''String''' module provides basic string functions previously offered by [[mediawikiwiki:Extension:StringFunctions|the StringFunctions extension]] and not replaced by [[mediawikiwiki:Extension:ParserFunctions|the ParserFunctions extension]]. Most of the functions provided here can be invoked with named parameters, unnamed parameters, or a mixture. If you use named parameters, the MediaWiki software automatically removes any leading or trailing whitespace from the parameter. == Global options == ; ignore_errors ''(optional)'' : If set to {{xt|true}} or {{xt|1}}, any error condition results in an empty string being returned instead of an error message. ; error_category ''(optional)'' : If an error occurs, specifies the name of a category to include with the error message. The default category is [[:Category:Errors reported by Module String]]. ; no_category ''(optional)'' : If set to {{xt|true}} or {{xt|1}}, don't add any categories if an error is generated. == len == This function returns the length of the target string. === Usage === <pre> {{#invoke: String|len|''target_string''}} </pre> OR <pre> {{#invoke: String|len|s= ''target_string'' }} </pre> ; s : The string whose length to report == sub == This function returns a substring of the target string at specified indices. === Usage === <pre> {{#invoke: String|sub|''target_string''|''start_index''|''end_index''}} </pre> OR <pre> {{#invoke: String|sub|s= ''target_string'' |i= ''start_index'' |j= ''end_index'' }} </pre> ; s : The string to return a subset of. ; i ''(optional)'' : The first index of the substring to return, defaults to 1. ; j ''(optional)'' : The last index of the string to return, defaults to the last character. The first character of the string is assigned an index of 1. If either '''i''' or '''j''' is a negative value, it is interpreted the same as selecting a character by counting from the end of the string. Hence, a value of '''-1''' is the same as selecting the last character of the string. If the requested indices are out of range for the given string, an error is reported. == match == This function returns a substring from the source string that matches a specified pattern. === Usage === <pre> {{#invoke: String|match|''source_string''|''pattern_string''|''start_index''|''match_number''|''plain_flag''|''nomatch_output''}} </pre> OR <pre> {{#invoke:</nowiki>String|match|s= ''source_string'' |pattern= ''pattern_string'' |start= ''start_index''|match= ''match_number''|plain= ''plain_flag'' |nomatch= ''nomatch_output'' }} </pre> ; s : The string to search ; pattern : The pattern or string to find within the string ; start : The index within the source string to start the search. The first character of the string has index 1. Defaults to 1. ; match : In some cases it may be possible to make multiple matches on a single string. This specifies which match to return, where the first match is match= 1. If a negative number is specified then a match is returned counting from the last match. Hence match = -1 is the same as requesting the last match. Defaults to 1. ; plain : A flag indicating that the pattern should be understood as plain text. Defaults to false. ; nomatch : If no match is found, output the "nomatch" value rather than an error. If the match_number or start_index are out of range for the string being queried, then this function generates an error. An error is also generated if no match is found. If one adds the parameter ignore_errors=true, then the error will be suppressed and an empty string will be returned on any failure. For information on constructing [[wikipedia:Lua (programming language)|Lua]] patterns, a form of [[wikipedia:regular expression|regular expression]], see: * [http://www.lua.org/manual/5.1/manual.html#5.4.1 Lua reference: Patterns] (as of version 5.1) * [[mediawikiwiki:Extension:Scribunto/Lua_reference_manual#Patterns|Scribunto patterns]] * [[mediawikiwiki:Extension:Scribunto/Lua_reference_manual#Ustring_patterns|Scribunto Unicode string patterns]] == pos == This function returns a single character from the target string at position pos. === Usage === <pre> {{#invoke: String|pos|''target_string''|''index_value''}} </pre> OR <pre> {{#invoke: String|pos|target= ''target_string'' |pos= ''index_value'' }} </pre> ; target : The string to search ; pos : The index for the character to return The first character has an index value of 1. If one requests a negative value, this function will select a character by counting backwards from the end of the string. In other words pos = -1 is the same as asking for the last character. A requested value of zero, or a value greater than the length of the string returns an error. == find == This function allows one to search for a target string or pattern within another string. === Usage === <pre> {{#invoke: String|find|''source_str''|''target_string''|''start_index''|''plain_flag''}} </pre> OR <pre> {{#invoke: String|find|source= ''source_str'' |target= ''target_str'' |start= ''start_index''|plain= ''plain_flag'' }} </pre> ; source : The string to search ; target : The string or pattern to find within source ; start : The index within the source string to start the search, defaults to 1 ; plain : Boolean flag indicating that target should be understood as plain text and not as a [[wikipedia:Lua (programming language)|Lua]]-style [[wikipedia:regular expression|regular expression]], defaults to true This function returns the first index >= "start" where "target" can be found within "source". Indices are 1-based. If "target" is not found, then this function returns 0. If either "source" or "target" are missing / empty, this function also returns 0. This function should be safe for UTF-8 strings. == replace == This function allows one to replace a target string or pattern within another string. === Usage === <pre> {{#invoke: String|replace|''source_str''|''pattern_string''|''replace_string''|''replacement_count''|''plain_flag''}} </pre> OR <pre> {{#invoke: String|replace|source= ''source_string'' |pattern= ''pattern_string''|replace= ''replace_string'' |count= ''replacement_count'' |plain= ''plain_flag'' }} </pre> ; source : The string to search ; pattern : The string or pattern to find within source ; replace : The replacement text ; count : The number of occurrences to replace; defaults to all ; plain : Boolean flag indicating that pattern should be understood as plain text and not as a [[mediawikiwiki:Extension:Scribunto/Lua reference manual#Ustring patterns|Scribunto ustring pattern]] (a unicode-friendly [[wikipedia:Lua (programming language)|Lua]]-style [[wikipedia:regular expression|regular expression]]); defaults to true == rep == Repeats a string ''n'' times. A simple function to pipe string.rep to templates. === Usage === <pre> {{#invoke: String|rep|''source''|''count''}} </pre> ; source : The string to repeat. ; count : The number of repetitions. === Example === <pre> {{#invoke:String|rep|hello|3}} </pre> gives {{#invoke:String|rep|hello|3}} [[Category:Synced to starfinderwiki]]
Summary:
Please note that all contributions to 2d4chan may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
2d4chan:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Templates used on this page:
Template:Wikipedia
(
edit
)
Template:Xt
(
edit
)
Module:String
(
edit
)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Module
Discussion
English
Views
Read
Edit source
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information