regexp
(stdlib)Regular Expression Functions for Strings
Note!
This module has been obsoleted by the re module and will be removed in a future release.
This module contains functions for regular expression matching and substitution.
Internal representation of a regular expression.
Functions
match(String, RegExp) -> MatchRes
Finds the first, longest match of the regular expression in . This function searches for the longest possible match and returns the first one found if there are several expressions of the same length. It returns as follows:
{match,Start ,Length }if the match succeeded. is the starting
position of the match, and is the length of
the matching string.
nomatchif there were no matching characters.
{error,Error }if there was an error in .
first_match(String, RegExp) -> MatchRes
Finds the first match of the regular expression in . This call is
usually faster than match and it is also a useful way to ascertain that a match exists. It returns as follows:
{match,Start ,Length }if the match succeeded. is the starting
position of the match and is the length of
the matching string.
nomatchif there were no matching characters.
{error,Error }if there was an error in .
matches(String, RegExp) -> MatchRes
Finds all non-overlapping matches of the
expression in .
It returns as follows:
{match, Matches }if the regular expression was correct.
The list will be empty if there was no match. Each element in the list looks like {, where is the starting position of the match, and is the length of the matching string.
{error,Error }if there was an error in .
sub(String, RegExp, New) -> SubRes
Substitutes the first occurrence of a substring matching in with the string . A & in the string is replaced by the matched substring of . \& puts a literal & into the replacement string. It returns as follows:
{ok,NewString ,RepCount }if is correct. is the number of replacements which have been made
(this will be either 0 or 1).
{error, Error }if there is an error in .
gsub(String, RegExp, New) -> SubRes
The same as sub, except that all non-overlapping
occurrences of a substring matching
in are replaced by the string . It returns:
{ok,NewString ,RepCount }if is correct. is the number of replacements which have been made.
{error, Error }if there is an error in .
split(String, RegExp) -> SplitRes
is split into fields (sub-strings) by the
regular expression .
If the separator expression is " " (a single space),
then the fields are separated by blanks and/or tabs and
leading and trailing blanks and tabs are discarded. For all
other values of the separator, leading and trailing blanks
and tabs are not discarded. It returns:
{ok, FieldList }to indicate that the string has been split up into the fields of
.
{error, Error }if there is an error in .
sh_to_awk(ShRegExp) -> AwkRegExp
Converts the sh type regular expression
into a full AWK regular
expression. Returns the converted regular expression
string. sh expressions are used in the shell for
matching file names and have the following special
characters:
*matches any string including the null string.
?matches any single character.
[...]matches any of the enclosed characters. Character
ranges are specified by a pair of characters separated
by a -. If the first character after [ is a
!, then any character not enclosed is matched.
It may sometimes be more practical to use sh type
expansions as they are simpler and easier to use, even though they are not as powerful.
parse(RegExp) -> ParseRes
Parses the regular expression and builds the
internal representation used in the other regular expression
functions. Such representations can be used in all of the
other functions instead of a regular expression string. This
is more efficient when the same regular expression is used
in many strings. It returns:
{ok, RE }if RegExp is correct and is the internal representation.
{error, Error }if there is an error in .
format_error(ErrorDescriptor) -> Chars
Returns a string which describes the error
returned when there is an error in a regular expression.
Regular Expressions
The regular expressions allowed here is a subset of the set found
in egrep and in the AWK programming language, as
defined in the book, The AWK Programming Language, by A. V. Aho, B. W. Kernighan, P. J. Weinberger. They are
composed of the following characters:
matches the non-metacharacter c.
matches the escape sequence or literal character c.
matches any character.
matches the beginning of a string.
matches the end of a string.
character class, which matches any of the characters
abc... Character ranges are specified by a pair of
characters separated by a -.
negated character class, which matches any character except
abc....
alternation. It matches either r1 or r2.
concatenation. It matches r1 and then r2.
matches one or more rs.
matches zero or more rs.
matches zero or one rs.
grouping. It matches r.
The escape sequences allowed are the same as for Erlang strings:
\bbackspace
\fform feed
\nnewline (line feed)
\rcarriage return
\ttab
\eescape
\vvertical tab
\sspace
\ddelete
\dddthe octal value ddd
\xhhThe hexadecimal value hh.
\x{h...}The hexadecimal value h....
\cany other character literally, for example \\ for backslash,
\" for ")
To make these functions easier to use, in combination with the
function io:get_line which terminates the input line with
a new line, the $ characters also matches a string ending
with "...\n". The following examples
define Erlang data types:
Atoms [a-z][0-9a-zA-Z_]* Variables [A-Z_][0-9a-zA-Z_]* Floats (\+|-)?[0-9]+\.[0-9]+((E|e)(\+|-)?[0-9]+)?
Regular expressions are written as Erlang strings when used with the functions in this module. This means that any \ or " characters in a regular expression
string must be written with \ as they are also escape characters for the string. For example, the regular expression string for Erlang floats is:
"(\\+|-)?[0-9]+\\.[0-9]+((E|e)(\\+|-)?[0-9]+)?".
It is not really necessary to have the escape sequences as part of the regular expression syntax as they can always be generated directly in the string. They are included for completeness and can they can also be useful when generating regular expressions, or when they are entered other than with Erlang strings.