StringTools
RegMatch
determine if a string matches a regular expression
Calling Sequence
Parameters
Description
Examples
RegMatch(pattern, text, options)
pattern
-
string; regular expression to match
text
string; text to test
options
(optional) name; subexpression substitution
The RegMatch( pattern, text ) function determines whether a string text matches the regular expression pattern.
If the string text matches the regular expression specified by pattern, the value true is returned. If text does not match pattern, the value false is returned.
Note: If the pattern argument contains syntax errors, Maple may signal an error.
Up to nine names can be passed to RegMatch in the options parameter. Upon a successful match, the first of these symbols is assigned the substring of text that matches the entire regular expression pattern, and the remaining symbols are assigned the portions of text that match any parenthesized subexpressions, if any.
This function is part of the StringTools package, and so it can be used in the form RegMatch(..) only after executing the command with(StringTools). However, it can always be accessed through the long form of the command by using the form StringTools[RegMatch](..).
All of the StringTools package commands treat strings as (null-terminated) sequences of -bit (ASCII) characters. Thus, there is no support for multibyte character encodings, such as unicode encodings.
The following is a Maple implementation of the `grep' text searching tool.
In the following example, the matching string and substrings are assigned to names.
See Also
curry
readbytes
Regular_Expressions
select
string
StringTools[Escape]
StringTools[RegSubs]
StringTools[Split]
Download Help Document