1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-11 17:58:54 +01:00
nc-photos/app/lib/entity/search_util.dart

4 lines
140 B
Dart
Raw Normal View History

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