removeAllNonAlphanumeric property

String get removeAllNonAlphanumeric

移除所有非字母数字字符

Implementation

String get removeAllNonAlphanumeric =>
    replaceAll(RegExp(r'[^a-zA-Z0-9]'), '');