apoc.text.doubleMetaphone
Function
apoc.text.doubleMetaphone(value String)
- returns the double metaphone phonetic encoding of all words in the given string value.
Usage Examples
RETURN apoc.text.doubleMetaphone("Neo4j Aura") AS output;
output |
---|
"NJAR" |
RETURN apoc.text.doubleMetaphone("GRANDstack: Build Fullstack GraphQL Applications With Ease") AS output;
output |
---|
"KRNTPLTFLSTKRFKAPLKA0AS" |
Was this page helpful?