string_normalizer 0.1.0 copy "string_normalizer: ^0.1.0" to clipboard
string_normalizer: ^0.1.0 copied to clipboard

outdated

Helps you to remove accents and diacritics from strings, it supports both static method and extension.

String Normalizer #

Helps you to remove accents and diacritics from strings.

Data source:

Usage #

  • Static method
final normalized = StringNormalizer.normalize('Đây là chữ có dấu');
// Result: Day la chu co dau
  • As an extension
final normalized = 'Đây là chữ có dấu'.normalize();
// Result: Day la chu co dau
  • Shorter version
final normalized = 'Đây là chữ có dấu'.nml;
// Result: Day la chu co dau
8
likes
0
points
3.38k
downloads

Publisher

verified publisherlamnhan.dev

Weekly Downloads

Helps you to remove accents and diacritics from strings, it supports both static method and extension.

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on string_normalizer