apoc.text.compareCleaned
Function APOC Core
apoc.text.compareCleaned(text1, text2) - compare the given strings stripped of everything except alpha numeric characters converted to lower case.
Usage Examples
RETURN apoc.text.compareCleaned('Hello World!', '_hello-world_') AS output;
output |
---|
TRUE |
RETURN apoc.text.compareCleaned('Hello World!', '_hello-world_$') AS output;
output |
---|
TRUE |
Was this page helpful?