View Source Exonerate.Formats.Regex (exonerate v1.1.3)

Module which provides a macro that generates special code for an json pointer filter.

the format is governed by the ECMA-262 standard: https://www.ecma-international.org/publications-and-standards/standards/ecma-262/

Link to this section Summary

Functions

Creates a NimbleParsec parser ~regex/1.

Link to this section Functions

Link to this macro

filter(opts \\ [])

View Source (macro)

Creates a NimbleParsec parser ~regex/1.

This function returns {:ok, ...} if the passed string is a valid regex, or {:error, reason, ...} if it is not. See NimbleParsec for more information on the return tuples.

The function will only be created once per module, and it is safe to call the macro more than once.

options

Options:

  • :name (atom): the name of the function to create. Defaults to :"~regex"