snowflake.snowpark.functions.soundex¶

snowflake.snowpark.functions.soundex(e: Union[Column, str]) → Column[source]¶

Returns a string that contains a phonetic representation of the input string.

Example::
>>> df = session.create_dataframe(["Marsha", "Marcia"], schema=["V"]).select(soundex(col("V")))
>>> df.collect()
[Row(SOUNDEX("V")='M620'), Row(SOUNDEX("V")='M620')]
Copy