Method RegEx():setIgnoreCase() Foundation
Sets case-insensitive matching mode.
:setIgnoreCase( [<lIgnore>] ) --> self
This method returns self.
Configures the pattern assigned to the RegEx object to ignore case differences when matching.
Test
oRegEx := RegEx():create("hello"):setIgnoreCase()
? oRegEx:test("HELLO") // .T.
oRegEx:destroy()
If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.