snowflake.snowpark.functions.soundex_p123¶
- snowflake.snowpark.functions.soundex_p123(varchar_expr: Union[snowflake.snowpark.column.Column, str]) Column[source]¶
Returns a phonetic representation of a string using the Soundex algorithm with P123 encoding. This function converts names or words that sound similar into the same code, making it useful for fuzzy matching and searching.
- Parameters:
varchar_expr (ColumnOrName) – The string expression to convert to Soundex P123 format.
- Returns:
The Soundex P123 encoded string.
- Return type:
- Examples::