apoc.text.phonetic
Function APOC Core
apoc.text.phonetic(text) yield value - Compute the US_ENGLISH phonetic soundex encoding of all words of the text
Usage Examples
RETURN apoc.text.phonetic("Neo4j") AS output;
output |
---|
"N200" |
RETURN apoc.text.phonetic("GRANDstack: Build Fullstack GraphQL Applications With Ease") AS output;
output |
---|
"G653B430F423G612A142W300E200" |
Was this page helpful?