NSString-LevenshteinDistance
NSString-LevenshteinDistance copied to clipboard
Levenshtein distance methods for NSString.
NSString+LevenshteinDistance
Description
This category adds one method to NSString:
- (NSUInteger)levenshteinDistanceTo:(NSString *)otherString;
Usage
NSString *a = @"[email protected]";
NSString *b = @"[email protected]";
NSUInteger distance = [a levenshteinDistanceTo:b];
XCTAssert(distance == 1, @"distance == 1");
Installation
NSString+LevenshteinDistance is available through CocoaPods, to install it simply add the following line to your Podfile:
pod "NSString+LevenshteinDistance"
Author
koyachi, [email protected]
License
NSString+LevenshteinDistance is available under the MIT license. See the LICENSE file for more info.