1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-01 01:33:16 +00:00
TiddlyWiki5/editions/tw5.com/tiddlers/filters/rest.tid
2015-01-18 19:20:02 +00:00

15 lines
501 B
Plaintext

created: 20140410103123179
modified: 20140410103123179
tags: Filters
caption: rest
title: FilterOperator: rest
type: text/vnd.tiddlywiki
Without an operand, the ''rest'' filter operator returns all but the first entry in the current list. The optional operand specifies the number of entries to omit.
For example:
|!Filter String |!Description |
|`one two three four five +[rest[]]` |Returns `two`, `three`, `four`, `five` |
|`one two three four five +[rest[2]]` |Returns `three`, `four`, `five` |