Team LiB   Previous Section   Next Section
RegExp.ignoreCase whether a regular expression is case-insensitive

Availability

JavaScript 1.2; JScript 5.5; ECMAScript v3

Synopsis

regexp.ignoreCase 

Description

ignoreCase is a read-only boolean property of RegExp objects. It specifies whether a particular regular expression performs case-insensitive matching; i.e.,whether it was created with the i attribute.

    Team LiB   Previous Section   Next Section