apoc.text.fuzzyMatch

Details

Syntax

apoc.text.fuzzyMatch(text1, text2)

Description

Performs a fuzzy match search of the two given STRING values.

Arguments

Name

Type

Description

text1

STRING

The first string to be compared against the second.

text2

STRING

The second string to be compared against the first.

Returns

BOOLEAN

Usage Examples

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

TRUE