contents   index   previous   next



RegExp ignoreCase

syntax:

regexp.ignoreCase

description:

A read-only property of an instance of a RegExp object. It is true if "i" is an attribute in the regular expression pattern being used.

 

Read-only property. Use RegExp compile() to change.

 

see:

Regular expression attributes

 

example:

var pat = /^Begin/i;

//or

var pat = new RegExp("^Begin", "i");

 


RegExp lastIndex