Difference between revisions of "Template:Firstdata/doc"

From blackwiki
Jump to navigation Jump to search
imported>DePiep
imported>Uzume
 
(2 intermediate revisions by one other user not shown)
Line 5: Line 5:
 
Example:
 
Example:
  
:In article: <nowiki>{{Infobox foo|name= |height=1200 m |location=Spain }}</nowiki>
+
:In article: <code><nowiki>{{Infobox foo|name= |height=1200 m |location=Spain }}</nowiki></code>
:In template code:
+
:In template code: <code><nowiki>{{Firstdata |{{{name|}}} |{{{location|}}}| {{{height|}}} }}</nowiki></code>
:{{Firstdata| {{{name|}}} | {{{location|}}} | {{{height|}}}}}
 
 
:returns <code>Spain</code> for further processing
 
:returns <code>Spain</code> for further processing
  
Line 29: Line 28:
  
 
Whitespace is stripped.
 
Whitespace is stripped.
==example==
+
==Example==
 
* <nowiki>{{firstdata||two|three}}</nowiki> &rarr; {{firstdata||two|three}}
 
* <nowiki>{{firstdata||two|three}}</nowiki> &rarr; {{firstdata||two|three}}
 
* <nowiki>{{firstdata|one||three}}</nowiki> &rarr; {{firstdata|one||three}}
 
* <nowiki>{{firstdata|one||three}}</nowiki> &rarr; {{firstdata|one||three}}
 
* <nowiki>{{firstdata|||}}</nowiki> &rarr; {{firstdata|||}}
 
* <nowiki>{{firstdata|||}}</nowiki> &rarr; {{firstdata|||}}
  
 +
==See also==
 +
*{{tl|If empty}}
  
 
<includeonly>{{sandbox other||
 
<includeonly>{{sandbox other||

Latest revision as of 17:38, 28 June 2020

In template code, one can list multiple input parameters, and this template will return the first input value that is not blank.

Example:

In article: {{Infobox foo|name= |height=1200 m |location=Spain }}
In template code: {{Firstdata |{{{name|}}} |{{{location|}}}| {{{height|}}} }}
returns Spain for further processing

Usage

Can have up to five parameters input. Will return the first parameter that is not blank.

{{firstdata
|1=
|2=
|3=
|4=
|5=
}}

or

{{firstdata|||}}

Practical use is inside an other template:

{{firstdata|{{{foo|}}} |{{{bar|}}} }}

Whitespace is stripped.

Example

  • {{firstdata||two|three}} → two
  • {{firstdata|one||three}} → one
  • {{firstdata|||}} →

See also