mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
12 lines
489 B
Plaintext
12 lines
489 B
Plaintext
{
|
|
"name": "soundex",
|
|
"type": "function",
|
|
"description": "Returns the Soundex representation of a string. Soundex is a phonetic matching algorithm, so strings with similar sounds should be represented by the same Soundex code.",
|
|
"arguments": [ {"arg":"string","description":"a string"}
|
|
],
|
|
"examples": [ { "expression":"soundex('robert')", "returns":"'R163'"},
|
|
{ "expression":"soundex('rupert')", "returns":"'R163'"},
|
|
{ "expression":"soundex('rubin')", "returns":"'R150'"}
|
|
]
|
|
}
|