isCaseSensitive 属性

bool isCaseSensitive

判断此正则表达式是否区分大小写。

如果正则表达式不区分大小写,它将匹配输入字母与模式字母,即使这两个字母是相同字母的不同大小写版本。

final text = 'Parse my string';
var regExp = RegExp(r'STRING', caseSensitive: false);
print(regExp.isCaseSensitive); // false
print(regExp.hasMatch(text)); // true, matches.

regExp = RegExp(r'STRING', caseSensitive: true);
print(regExp.isCaseSensitive); // true
print(regExp.hasMatch(text)); // false, no match.

实现

bool get isCaseSensitive;