pattern 属性

String pattern

RegExp 的正则表达式模式源。

final regExp = RegExp(r'\p{L}');
print(regExp.pattern); // \p{L}

实现

String get pattern;