apoc.text.phoneticDelta
Syntax |
|
||
Description |
Returns the US_ENGLISH soundex character difference between the two given |
||
Input arguments |
Name |
Type |
Description |
|
|
The first string to be compared against the second. |
|
|
|
The second string to be compared against the first. |
|
Return arguments |
Name |
Type |
Description |
|
|
The phonetic representation of the first string. |
|
|
|
The phonetic representation of the second string. |
|
|
|
The soundex character difference between the two given strings. |
Usage Examples
CALL apoc.text.phoneticDelta("Neo4j", "Neo4j");
phonetic1 | phonetic2 | delta |
---|---|---|
"N200" |
"N200" |
4 |
CALL apoc.text.phoneticDelta("Neo4j Graph Data Science Library", "Neo4j Graph Database");
phonetic1 | phonetic2 | delta |
---|---|---|
"N261" |
"N261" |
4 |
CALL apoc.text.phoneticDelta("GRANDstack", "GraphQL");
phonetic1 | phonetic2 | delta |
---|---|---|
"G653" |
"G612" |
2 |