Skip to main content

Regex

4
  • re-find

    Returns the first regex match, if any, of s to re, using re.exec(s). Returns a vector, containing first the matching sub...

  • re-matches

    Returns the result of (re-find re s) if re fully matches s.

  • re-pattern

    Returns an instance of RegExp which has compiled the provided string.

  • re-seq

    Returns a lazy sequence of successive matches of re in s.