package gapi-ocaml
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=b84b680528a5e050014103a8e7a60a5d43efd5fefc3f838310bd46769775ab48
md5=8ee26acf1f6c6f5e24c7b57fa070a0a2
doc/gapi-ocaml.netstring-local/Netstring_str/index.html
Module Netstring_str
Source
Wrapper for regexps with Str
syntax * * This module was written at a time when we had only the Str
module * for regular expressions. However, Str
has an interface that does * not work for multi-threaded programs, because the state of the module * is visible to the outside. The module Netstring_str
is similar to Str
, * but has a thread-compatible interface. * * For an explanation why we need this module, please read Regexp
.
Supported regexp syntax * *
* . matches every character but newline
* e* matches e several times
* e+ matches e several times but at least once
* e? matches e optionally
* e{m,n} matches e at least m times and at most n times
* e1\|e2 matches e1 or e2
* [set] matches the characters from set
* [^set] matches the characters except from set
* \(...\) group paranthesis
* \n back reference (n is digit)
* ^ matches at beginning of line
* $ matches at end of line
*
* * This is exactly what Str
supports. Character classes * are not implemented.
The type of regular expressions
Parses a case-insensitive regexp
Quotes a string such that it can be included in a regexp
Quotes a string such that it can be included in a regexp
Returns a regexp that matches exactly the string
Returns a regexp that matches exactly the string
Returns a case-insensitive regexp that matches exactly the string
Returns a regexp (as string) that matches any of the characters in the argument. The argument must be non-empty
Matches the string at the position with the regexp. Returns * None
if no match is found. Returns Some r
on success, * and r
describes the match.
Searches a match of the string with the regexp, starting at * the position and in forward direction. * Raises Not_found
if no match could be found. * Returns (p,r)
when a match at position p
is found, * described by r
.
Searches a match of the string with the regexp, starting at * the position and in backward direction. * Raises Not_found
if no match could be found. * Returns (p,r)
when a match at position p
is found, * described by r
.
Extracts the matched part from the string. The string argument * must be the same string passed to string_match
or the search * functions, and the result argument must be the corresponding * result.
Extracts the substring the nth group matches from the whole * string. The string argument * must be the same string passed to string_match
or the search * functions, and the result argument must be the corresponding * result.
Returns the position where the substring matching the nth * group begins
Returns the position where the substring matching the nth * group ends
global_replace re templ s
: Replaces all matchings of re
in * s
by templ
. * * In templ
one can refer to matched groups by the backslash notation: * \1
refers to the first group, \2
to the second etc. * \0
is the whole match. \\
is the backslash character.
replace_first re templ s
: Replaces the first match of re
in * s
by templ
. * * In templ
one can refer to matched groups by the backslash notation: * \1
refers to the first group, \2
to the second etc. * \0
is the whole match. \\
is the backslash character.
global_substitute re subst s
: Applies the substitution function * subst
to all matchings of re
in s
, and returns the * transformed string. subst
is called with the current result
* of the match and the whole string s
.
substitute_first re subst s
: Applies the substitution function * subst
to the first matching of re
in s
, and returns the * transformed string. subst
is called with the current result
* of the match and the whole string s
.
Splits the string according to the regexp in substrings. * Occurrences of the delimiter at the beginning and the end * are ignored.
Splits into at most n
substrings, based on split
Splits into at most n
substrings, based on split
Same as split
, but occurrences of the delimiter at the beginning * and the end are returned as empty strings
Same as split
, but occurrences of the delimiter at the beginning * and the end are returned as empty strings
Splits into at most n
substrings, based on split_delim
Splits into at most n
substrings, based on split_delim
Like split_delim
, but returns the delimiters in the result
Like split_delim
, but returns the delimiters in the result
Splits into at most n
substrings, based on full_split
The first n
characters of a string
The first n
characters of a string
The last n
characters of a string
The last n
characters of a string
Same as string_before
Same as string_before
Same as string_after