1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-02 13:28:49 +01:00
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), " ");