[
(range)Outputs a ranged subset of data from STDIN
This will read from STDIN and output a subset of data in a defined range.
The range can be defined as a number of different range types - such as the content of the array or it’s index / row number. You can also omit either the start or the end of the search criteria to cover all items before or after the remaining search criteria.
Please note that @[
syntax has been deprecated in favour of [
syntax instead. Aside from its name dropping the @
prefix, it will still perform identically
<stdin> -> [start..end]flags -> <stdout>
Deprecated support:
<stdin> -> @[start..end]flags -> <stdout>
Range over all months after March:
» a: [January..December] -> [March..]se
April
May
June
July
August
September
October
November
December
Range from the 6th to the 10th month (indexes start from zero, 0
):
» a: [January..December] -> [5..9]
June
July
August
September
October
8
handles backspace characters (char 8) instead of treating it like a printable characterb
removes blank (empty) lines from sourcee
exclude the start and end search criteria from the rangen
array indexr
regexp matchs
exact string matcht
trims whitespace from source@[
[[
(element): Outputs an element from a nested structure[
(index): Outputs an element from an array, map or tablea
(mkarray): A sophisticated yet simple way to build an array or listalter
: Change a value within a structured data-type and pass that change along the pipeline without altering the original source inputappend
: Add data to the end of an arraycount
: Count items in a map, list or arrayja
(mkarray): A sophisticated yet simply way to build a JSON arrayjsplit
: Splits STDIN into a JSON array based on a regex parameterprepend
: Add data to the start of an arrayThis site's content is rebuilt automatically from murex's source code after each merge to the master
branch. Downloadable murex binaries are also built with the website.
Last built on Mon Feb 13 09:18:06 UTC 2023 against commit f339958f33995895c1d997efcdbb8408d2c8d45f8b5f934.
Current version is which has been verified against 13950 tests cases.