TypeProperty (R)
Formatobject . IgnoreCase
Commentary
Indicates whether to ignore the case. To ignore is true, otherwise false.
(Unconfirmed)
Option "g" in the global match, "i" if it ignored the match in the case, m determine whether to match the line unit.
You cannot change this property directly.
Sample code - QC 2 JavaScript
str = "RegExp Sample Text. String Match Test.";
reObj = new RegExp ( "S +", "gi");
result = str.match (reObj);
outputs [0] = "number of matches" + result.length + ". ignore flag:" + reObj.ignoreCase;
Sample code - QC 3 JavaScript
function (__string output) main (__number inputNumber[2])
{
var result = new Object();
str = "RegExp Sample Text. String Match Test.";
reObj = new RegExp("S+","gi");
result = str.match(reObj);
result.output = "Number of matches"+result.length+"。ignore Flag:"+reObj.ignoreCase; return result;
}