easy_string_utils 1.0.1
easy_string_utils: ^1.0.1 copied to clipboard
A simple Dart extension that provides commonly used and easy-to-use string utility methods for Flutter and Dart projects.
Changelog #
1.0.0 #
- Initial release with string utility extension methods
1.0.1 - 2025-07-17 #
Added #
charCount(): Returns total character count in a string.charCountWithoutSpaces(): Returns count excluding whitespace.countUpperAndLowerCase(): Returns upper/lowercase character counts.removeDigits()to remove digits from string.isEmptyOrNullto check if a string is null or empty.toggle()extension to reverse boolean values.
Fixed #
- Applied Dart formatter to improve code style and pass pub.flutter-io.cn analysis.