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), " ");