Yeah you did! Matching strings is easy, right up until it isn’t. Most programming languages give you a double-equals operator or maybe an eq method. We will focus on Ruby here. Put in two strings and you get out a true or a false. irb(main):001> 'easy' == 'easy' => true This works great on two […] The post Did you mean Jaro-Winkler? appeared first on Simple Thread.