public abstract class JSRegExp extends java.lang.Object implements JSRegExpFunctions
hasOwnProperty| Modifier and Type | Field and Description |
|---|---|
protected JSFunction |
constructor
property constructor
|
protected JSBoolean |
global
property global
|
protected JSBoolean |
ignoreCase
property ignoreCase
|
protected JSNumber |
lastIndex
property lastIndex
|
protected JSBoolean |
multiline
property multiline
|
JSRegExp |
prototype
property prototype
|
protected JSString |
source
property source
|
| Constructor and Description |
|---|
JSRegExp(JSString pattern,
JSString attributes)
Object RegExp(pattern, attributes)
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitexec, testhasOwnProperty, isPrototypeOf, propertyIsEnumerable, toLocaleString, toString, valueOfpublic JSRegExp prototype
RegExpprotected JSFunction constructor
Functionprotected JSString source
Stringprotected JSBoolean global
Booleanprotected JSBoolean ignoreCase
Booleanprotected JSBoolean multiline
Booleanpublic JSRegExp(JSString pattern, JSString attributes)
pattern - a string that specifies the pattern of the regular expression.attributes - an optional string containing and of the "g", "i" an "m" attributes that specify global, case-insensitive, and multiline matches respectively.