support 0.3.0 copy "support: ^0.3.0" to clipboard
support: ^0.3.0 copied to clipboard

A collection of extension methods and helper classes for Dart projects.

example/README.md

Examples #

String #

String.after()

Return the remainder of a string after the first occurrence of a given value.

String.afterLast()

Return the remainder of a string after the last occurrence of a given value.

String.before()

Get the portion of a string before the first occurrence of a given value.

String.beforeLast()

Get the portion of a string before the last occurrence of a given value.

String.between()

Get the portion of a string between two given values.

String.betweenFirst()

Get the smallest possible portion of a string between two given values.

String.kebab()

Convert a string to kebab case.

String.lcfirst()

Convert the first character of the given string to lower-case.

String.lower()

Convert the given string to lower-case.

String.plural()

Get the plural form of an English word.

String.reverse()

Reverse the given string.

String.singular()

Get the singular form of an English word.

String.snake()

Convert a string to snake case.

String.take()

Take the first or last {limit} characters of a string.

String.ucfirst()

Make a string's first character uppercase.

String.upper()

Convert the given string to upper-case.

1
likes
0
points
303
downloads

Publisher

unverified uploader

Weekly Downloads

A collection of extension methods and helper classes for Dart projects.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

pluralize

More

Packages that depend on support