apoc.text.phonetic

Function

apoc.text.phonetic(text STRING) - returns the US_ENGLISH phonetic soundex encoding of all words of the STRING.

Signature

apoc.text.phonetic(value :: STRING) :: STRING

Input parameters

Name Type Default

value

STRING

null

Usage Examples

RETURN apoc.text.phonetic("Neo4j") AS output;
Table 1. Results
output

"N200"

RETURN apoc.text.phonetic("GRANDstack: Build Fullstack GraphQL Applications With Ease") AS output;
Table 2. Results
output

"G653B430F423G612A142W300E200"