The
XPath Tutorial says:
Quote:
re:test()
re:test(src, pattern, flags) returns true if the string src matches the regular expression pattern. A particularly useful flag is i, it makes matching case insensitive. A good primer on the syntax for regular expressions can be found at regexp syntax
|
Python Docs say:
Quote:
7.2.6.4. search() vs. match()
In a nutshell, match() only attempts to match a pattern at the beginning of a string where search() will match a pattern anywhere in a string.
|
Is "matching" being used in the Python sense in re:test, i.e. as in re:match?