dart_phonetics 0.1.0-dev.2 copy "dart_phonetics: ^0.1.0-dev.2" to clipboard
dart_phonetics: ^0.1.0-dev.2 copied to clipboard

outdated

A collection of phonetic algorithms for Dart.

example/main.dart

import 'package:dart_phonetics/dart_phonetics.dart';

void _printResult(Object encoder, String input, String encoded) {
  print('${encoder.runtimeType.toString().padRight(20)}: $input => $encoded');
}

void main() {
  final inputString = 'Cardillo';

  final soundex = Soundex.usEnglishEncoder;
  _printResult(soundex, inputString, soundex.encode(inputString));

  final refinedSoundex = RefinedSoundex.usEnglishEncoder;
  _printResult(refinedSoundex, inputString, refinedSoundex.encode(inputString));
}
19
likes
0
points
1.06k
downloads

Publisher

verified publishercardilloonline.com

Weekly Downloads

A collection of phonetic algorithms for Dart.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

charcode

More

Packages that depend on dart_phonetics