apoc.text.phonetic

Details

Syntax

apoc.text.phonetic(text)

Description

Returns the US_ENGLISH phonetic soundex encoding of all words of the STRING.

Arguments

Name

Type

Description

text

STRING

The string to encode using US_ENGLISH phonetic soundex.

Returns

STRING

Usage Examples

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

"N200"

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

"G653B430F423G612A142W300E200"