string_utilities 1.0.0
string_utilities: ^1.0.0 copied to clipboard
A set of utility functions and extensions for enhanced string operations in Dart and Flutter.
1.0.0 - 2024-05-04 #
Added #
- Initial release with a collection of extension methods for the
Stringtype. ifEmpty: Returns a default value if a string is empty.isBlank: Checks if a string is blank (empty or contains only whitespace).toCapitalize: Capitalizes the first letter of a string.toReverse: Reverses the characters in a string.toLowerCase: Converts a string to lowercase.toCapitalizeEachWord: Capitalizes the first letter of each word in a string.removeLastWord: Removes the last word from a string.getLastWord: Retrieves the last word from a string.isEquals: Compares two strings with optional case-insensitive comparison and trimming.
Changed #
- N/A
Fixed #
- N/A