package js_of_ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type regexp
type result
val regexp : string -> regexp
val regexp_case_fold : string -> regexp
val regexp_with_flag : string -> string -> regexp
val quote : string -> string
val regexp_string : string -> regexp
val regexp_string_case_fold : string -> regexp
val string_match : regexp -> string -> int -> result option
val search_forward : regexp -> string -> int -> (int * result) option
val matched_string : result -> string
val matched_group : result -> int -> string option
val global_replace : regexp -> string -> string -> string
val replace_first : regexp -> string -> string -> string
val split : regexp -> string -> string list
val bounded_split : regexp -> string -> int -> string list