package links

  1. Overview
  2. Docs
val split : char -> string -> string list
val string_starts_with : string -> string -> bool
val boundary_re1 : Str.regexp
val boundary_re2 : Str.regexp
val name_re1 : Str.regexp
val name_re2 : Str.regexp
val filename_re1 : Str.regexp
val filename_re2 : Str.regexp
val content_type_re1 : Str.regexp
val content_type_re2 : Str.regexp
val separator_re : Str.regexp
val match_string : Str.regexp -> Str.regexp -> string -> string
type field_data = {
  1. value : string;
  2. filename : string;
  3. content_type : string;
}
val extract_field : string -> string * field_data
val extract_fields : (string * field_data) list -> string list -> (string * field_data) list
val parse_multipart_args : string -> string -> (string * field_data) list