apoc.text.fuzzyMatch

Function

apoc.text.fuzzyMatch(text1 STRING, text2 STRING) - performs a fuzzy match search of the two given STRING values.

Signature

apoc.text.fuzzyMatch(text1 :: STRING, text2 :: STRING) :: BOOLEAN

Input parameters

Name Type Default

text1

STRING

null

text2

STRING

null

Usage Examples

RETURN apoc.text.fuzzyMatch("The", "the") AS output;
Table 1. Results
output

TRUE