match
About 1 min
match
Match an exact value in an array
Description
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
Usage
Match every occurrence of search string
`<stdin>` -> match search string -> `<stdout>`
Match everything except search string
`<stdin>` -> !match search string -> `<stdout>`
Examples
Match Wed
» ja: [Monday..Friday] -> match Wed
[
"Wednesday"
]
Match everything except Wed
» ja: [Monday..Friday] -> !match Wed
[
"Monday",
"Tuesday",
"Thursday",
"Friday"
]
Detail
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.
Synonyms
match
!match
list.string
See Also
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-type