nc-photos/app/lib/entity/search_util.dart
2022-08-07 23:54:35 +08:00

3 lines
140 B
Dart

/// Covert all symbols to whitespace
String cleanUpSymbols(String s) =>
s.replaceAll(RegExp(r"(?:_|[^\p{L}\d])+", unicode: true), " ");