phonetics 1.5.1 copy "phonetics: ^1.5.1" to clipboard
phonetics: ^1.5.1 copied to clipboard

Dart 1 only

Soundex, Double Metaphone and Kölner Phonetik

Dart Phonetics #

Copyright (C) 2013 Edwin Bühler. All Rights Reserved.

Author: Edwin Bühler fulnir@gmail.com

Calculates the phonetic code for the given string.

import 'package:phonetics/phonetics.dart';

main() {
  print(phonetic('Dart', 'en'));            // Returns D630
  print(asColognePhonetic('Dart'));         // Returns 272
  print(asSoundexPhonetic('Dart'));         // Returns D630
  print(asDoubleMetaphonePhonetic('Dart')); // Returns TRT
  print(doubleMetaphoneFuzzyCompare('John', 'Jean'); // Returns true
}

##Soundex

For the English language.

Metaphone

en.wikipedia.org/wiki/Metaphone

Soundex

en.wikipedia.org/wiki/Soundex

Kölner Phonetik #

For the German language.

de.wikipedia.org/wiki/Kölner_Phonetik

0
likes
10
points
4
downloads

Publisher

unverified uploader

Weekly Downloads

Soundex, Double Metaphone and Kölner Phonetik

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

intl, junitconfiguration, logging

More

Packages that depend on phonetics