Files
MWClash/lib/common/string.dart

12 lines
234 B
Dart
Raw Normal View History

2024-04-30 23:38:49 +08:00
extension StringExtension on String {
bool get isUrl {
return RegExp(r'^(http|https|ftp)://').hasMatch(this);
2024-04-30 23:38:49 +08:00
}
2024-08-05 19:25:35 +08:00
int compareToLower(String other) {
return toLowerCase().compareTo(
other.toLowerCase(),
);
}
2024-04-30 23:38:49 +08:00
}