Difference between revisions of "Template:First word/doc"

From blackwiki
Jump to navigation Jump to search
imported>DixonD
(Lua-based now)
imported>Mr. Stradivarius
(add {{lua}} template and remove Category:Lua-based templates, as it is added by the template as well - see Wikipedia talk:Lua#Lua talk template)
Line 1: Line 1:
 
{{Documentation subpage}}
 
{{Documentation subpage}}
 +
{{lua|Module:String}}
 
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
 
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
 
__NOTOC__
 
__NOTOC__
Line 22: Line 23:
 
<!-- CATEGORIES AND INTERWIKIS HERE, THANKS -->
 
<!-- CATEGORIES AND INTERWIKIS HERE, THANKS -->
 
[[Category:String manipulation templates]]
 
[[Category:String manipulation templates]]
[[Category:Lua-based templates]]
 
 
</includeonly>
 
</includeonly>

Revision as of 10:47, 19 July 2013

Usage

Returns the first word of the first parameter. By default, words are delimited by spaces, but optional parameter sep=/ can set the word separator to slash (or any other character). The parameter should not have leading spaces, unless the word separator, sep, is set to another character.

Examples

  • {{first word|Foo bar baz}} → Foo
  • {{first word|Foo}} → Foo
  • {{first word|Foo-bar-baz}} → Foo-bar-baz
  • {{first word|Foo-bar-baz|sep=- }} → Foo
  • {{first word|34,000,500|sep=, }} → 34
  • {{first word|1=len = a+b |sep== }} → len
  • {{first word|Hear ye, users |sep=, }} → Hear ye

See also

Template:Navbox string handling templates