Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

ZebulonRouseFrantzich/DoubleMetaphoneSwift

Repository files navigation

DoubleMetaphoneSwift

This is an implementation of the Double Metaphone algorithm in Swift. The algorithm was originally coded by Lawrence Philips.

Setting up with CocoaPods

source 'https://github.com/CocoaPods/Specs.git'
pod 'DoubleMetaphoneSwift', '~> 0.0.1'

Usage

Import DoubleMetaphoneSwift at the top of the Swift file.

import DoubleMetaphoneSwift

The returned Double Metaphone calculation returns the primary and secondary calculations as a tuple.

guard let (primary, secondary) = DoubleMetaphoneSwift.calculate(input: "Hello World!") else {
 print("Failed to calculate...")
 return
}
print("Primary: \(primary)") // Primary: HLRL
print("Secondary: \(secondary)") // Secondary: HLRL

AltStyle によって変換されたページ (->オリジナル) /