Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

test


regexp:test() tests to see whether a string matches a specified regular expression.

Syntax

regexp:test(testString, regExpString[, flagsString])

Arguments

testString
The string to test..
regExpString
The JavaScript style regular expression to evaluate.
flagsString
An optional string containing character flags.

The character flags are:

g
Global match
Has no effect for this function; it's allowed for consistency with other regexp functions.
i
Case insensitive match
If this flag is specified, the match is performed in a case insensitive fashion.

Returns

true if the specified regexp matches the test string.

Defined

EXSLT - REGEXP:TEST

Gecko support

Supported in Gecko 1.9 and later.

Document Tags and Contributors

 Contributors to this page: Sheppy, Mgjbot, Fredchat
 Last updated by: Sheppy,