pyspark.pandas.Series.str.normalize¶
- 
str.normalize(form: str) → pyspark.pandas.series.Series¶
- Return the Unicode normal form for the strings in the Series. - For more information on the forms, see the - unicodedata.normalize().- Parameters
- form{‘NFC’, ‘NFKC’, ‘NFD’, ‘NFKD’}
- Unicode form. 
 
- Returns
- Series of objects
- A Series of normalized strings.