string_utils_extension

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

string utils extension

This is a simple extension, adding functionalities the class String giving super powers, como Capitalize a word or a text, you too can convert words to ("camelCase", "PascalCase", "snake_case"), you can too, "to snake" the a text, but not convert em lowercase, para isso é "snake()" or use "revert()" para transform the word converteds to ("camelCase", "PascalCase", "snake_case") in a text again.
Features #
For "to snakeize" the a text, e not convert all words in lowercase, for this use "snake()",
by default joim the words using the separator underscore "_", but you can to use anywere caracter.
parameters:
[String? snakeSeparator]: optional, and default is underscore "_" #
[String? snakeRegex]: optional, and default is "[A-Z]", regex then find all character uppercase, but case the word #

String snake([String? snakeSeparator, String? snakeRegex])

print("Any text can be Snakezed".snake()); // Any_text_can_be_Snakezed

print("Any text can be Snakezed".snake(".")); // Any.text.can.be.Snakezed

copied to clipboard
or use "revert()" para transform the word converteds to ("camelCase", "PascalCase", "snake_case") in a text again.

print("Any_text_can_be_Snakezed".revert()); // Any text can be Snakezed
copied to clipboard
Note that both snake() and revert() do not change the state of words to lowercase or uppercase.
TODO: List what your package can do. Maybe include images, gifs, or videos.
Getting started #
Not has prerequisites to user extension, your dependecy is oure dart
Usage #
Short and useful examples for package into /example folder.
import 'package:string_utils_extension/string_utils_extension.dart';

void main() {
String texto = "to insert Type Residue";
String pascalCase = texto.toPascalCase();
String camelCase = texto.toCamelCase();
String snakeCase = texto.toSnakeCase();
String capitalize = texto.toCapitalize();
String pascalWithSnake = pascalCase.snake();

print("The text -> $texto");
print("Capitalize -> $capitalize");
print("PascalCase -> $pascalCase");
print("camelCase -> $camelCase");
print("snake_case -> $snakeCase");
print("PascaCase with snake -> $pascalWithSnake");
print("snakeRevert with '' -> ${pascalWithSnake.snakeRevert()}");
print("snake Revert with ' ' -> ${pascalWithSnake.snakeRevert(' ')}");
}

// Capitalize -> to insert Type Residue
// Capitalize -> To insert type residue
// PascalCase -> ToInsertTypeResidue
// camelCase -> toInsertTypeResidue
// snake_case -> to_insert_type_residue
// PascaCase with snake -> To_Insert_Type_Residue
// snakeRevert with '' -> To Insert Type Residue
// snake Revert with ' ' -> To_ Insert_ Type_ Residue

copied to clipboard
Additional information #
Thank you for uses this extension.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.