package liquidsoap-lang

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Lang.RegexpSource

include Regexp.T with type t := regexp
Sourceval regexp : ?flags:Regexp.flag list -> string -> regexp
Sourceval split : regexp -> string -> string list
Sourceval exec : regexp -> string -> Regexp.sub
Sourceval test : regexp -> string -> bool
Sourceval substitute : regexp -> subst:(string -> string) -> string -> string
Sourcetype sub = Regexp.sub = {
  1. matches : string option list;
  2. groups : (string * string) list;
}