Template:Item: Difference between revisions

From DBpedia Mappings
Jump to navigationJump to search
No edit summary
No edit summary
Line 1: Line 1:
<includeonly>{{#replace:{{#explode:{{{1}}}|,|{{{2}}}}}|\|}}</includeonly><noinclude>
<includeonly>{{#replace:{{#explode:{{{1}}}|,|{{{2}}}}}|\|}}</includeonly><noinclude>
Gets an item from a list. The first parameter is the list - a string containing items separated by commas. The second parameter is the zero-based index of the item.
Gets an item from a list. The first parameter is the list - a string containing items separated by commas. The second parameter is the zero-based index of the item. Negative indexes start from the end of the list.


Example: '''<nowiki>{{get|a,b,c|1}}</nowiki>''' results in '''b'''.</noinclude>
Examples:
 
* '''<nowiki>{{get|a,b,c,d|1}}</nowiki>''' results in '''b'''
* '''<nowiki>{{get|a,b,c,d|-2}}</nowiki>''' results in '''c'''
</noinclude>

Revision as of 07:30, 15 March 2012

Gets an item from a list. The first parameter is the list - a string containing items separated by commas. The second parameter is the zero-based index of the item. Negative indexes start from the end of the list.

Examples:

  • {{get|a,b,c,d|1}} results in b
  • {{get|a,b,c,d|-2}} results in c