package dune-private-libs

  1. Overview
  2. Docs

Module Dune_re.SeqSource

Sourceval all : ?pos:int -> ?len:int -> Dune_re__.Core.re -> string -> Dune_re__.Core.Group.t Seq.t

Same as Re.all but returns an iterator.

Examples:

    # let regex = Re.compile Re.(seq [str "my"; blank; word(rep alpha)]);;
    val regex : re = <abstr>

    # Re.Seq.all regex "my head, my shoulders, my knees, my toes ...";;
    - : Re.substrings Seq.t = <fun>
  • since 1.10.0
Sourceval matches : ?pos:int -> ?len:int -> Dune_re__.Core.re -> string -> string Seq.t

Same as Re.matches, but returns an iterator.

Example:

    # let regex = Re.compile Re.(seq [str "my"; blank; word(rep alpha)]);;
    val regex : re = <abstr>

    # Re.Seq.matches regex "my head, my shoulders, my knees, my toes ...";;
    - : string Seq.t = <fun>
  • since 1.10.0
Sourceval split : ?pos:int -> ?len:int -> Dune_re__.Core.re -> string -> string Seq.t

Same as Re.split but returns an iterator.

Example:

    # let regex = Re.compile (Re.char ',');;
    val regex : re = <abstr>

    # Re.Seq.split regex "Re,Ocaml,Jerome Vouillon";;
    - : string Seq.t = <fun>
  • since 1.10.0
Sourceval split_full : ?pos:int -> ?len:int -> Dune_re__.Core.re -> string -> [ `Text of string | `Delim of Dune_re__.Core.Group.t ] Seq.t

Same as Re.split_full but returns an iterator.

Example:

    # let regex = Re.compile (Re.char ',');;
    val regex : re = <abstr>

    # Re.Seq.split_full regex "Re,Ocaml,Jerome Vouillon";;
    - : Re__Core.split_token Seq.t = <fun>
  • since 1.10.0
OCaml

Innovation. Community. Security.