This page is part of a static HTML representation of the TiddlyWiki at https://tiddlywiki.com/

sortsub Operator

 22nd May 2021 at 4:25pm
purposesort the input by the result of evaluating a subfilter for each item
inputa selection of titles
suffixT=the type used for the comparison (string, number, integer, date, version), defaulting to string
parameterS=a subfilter to be evaluated
outputthe input, sorted into ascending order by the result of evaluating subfilter S
! outputthe input, sorted into reverse order by the result of evaluating subfilter S

Learn more about how to use Filters

Each item in the list of input titles is passed to the subfilter in turn. The subfilter transforms the input titles into the form needed for sorting. For example, the subfilter [length[]] transforms each input title in the number representing its length, and thus sorts the input titles according to their length.

Note that within the subfilter, the "currentTiddler" variable is set to the title of the tiddler being processed. This permits subfilters like [{!!value}divide{!!cost}] to be used for computation.

The value of currentTiddler outside the subfilter is available in the variable "..currentTiddler". Introduced in v5.2.0

The suffix T determines how the items are compared and can be:

  • "string" (the default)
  • "number" - invalid numbers are interpreted as zero
  • "integer" - invalid integers are interpreted as zero
  • "date" - invalid dates are interpreted as 1st January 1970
  • "version" - invalid versions are interpreted as "v0.0.0"
  • "alphanumeric" - treat items as alphanumerics Introduced in v5.2.0

Note that subfilters should return the same number of items that they are passed. Any missing entries will be treated as zero or the empty string. In particular, when retrieving the value of a field with the get Operator it is helpful to guard against a missing field value using the else Operator. For example [get[myfield]else[default-value]....

Examples