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;