Module regex::re_unicode[][src]

Structs

CaptureMatches

An iterator that yields all non-overlapping capture groups matching a particular regular expression.

CaptureNames

An iterator over the names of all possible captures.

Captures

Captures represents a group of captured strings for a single match.

CapturesDebug
Match

Match represents a single match of a regex in a haystack.

Matches

An iterator over all non-overlapping matches for a particular string.

NoExpand

NoExpand indicates literal string replacement.

Regex

A compiled regular expression for matching Unicode strings.

ReplacerRef

By-reference adaptor for a Replacer

Split

Yields all substrings delimited by a regular expression match.

SplitN

Yields at most N substrings delimited by a regular expression match.

SubCaptureMatches

An iterator that yields all capturing matches in the order in which they appear in the regex.

Traits

Replacer

Replacer describes types that can be used to replace matches in a string.

Functions

escape

Escapes all regular expression meta characters in text.