regexp.matchRegexpString() function

    *Output data type: Boolean*

    *Data type: Regexp*

    v

    *Data type: String*

    Examples

    Filter by columns that contain matches to a regular expression
    1. import "regexp"
    2. data
    3. |> filter(fn: (r) =>
    4. r: /Alert\:/,
    5. v: r.message
    6. )