match
Match an exact value in an array
match
takes input from STDIN and returns any array items / lines which contain an exact match of the parameters supplied.
When multiple parameters are supplied they are concatenated into the search string and white space delimited. eg all three of the below are the same:
match "a b c"
match a\sb\sc
match a b c
match a b c
If you want to return everything except the search string then use `!match
Match every occurrence of search string
<stdin> -> match search string -> <stdout>
Match everything except search string
<stdin> -> !match search string -> <stdout>
Match Wed
» ja: [Monday..Friday] -> match Wed
[
"Wednesday"
]
Match everything except Wed
» ja: [Monday..Friday] -> !match Wed
[
"Monday",
"Tuesday",
"Thursday",
"Friday"
]
match
is data-type aware so will work against lists or arrays of whichever murex data-type is passed to it via STDIN and return the output in the same data-type.
match
!match
list.string
2darray
: Create a 2D JSON array from multiple input sourcesa
(mkarray): A sophisticated yet simple way to build an array or listappend
: 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 parametermap
: Creates a map from two data sourcesmsort
: Sorts an array - data type agnosticprefix
: Prefix a string to every item in a listprepend
: Add data to the start of an arraypretty
: Prettifies JSON to make it human readableregexp
: Regexp tools for arrays / lists of stringssuffix
: Prefix a string to every item in a listta
(mkarray): A sophisticated yet simple way to build an array of a user defined data-typeThis 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.