klyn.regex.RegEx.flags
property
public property flags as Int:
Description

Regular-expression option bits. Bit 1 enables case-insensitive matching. Assigning a new value recompiles the expression before its next use.

regex = RegEx("^a$")
regex.flags = 1
assert regex.matches("A")