Ah vänta - jag tror jag har det. Om jag gör något sånt här verkar det fungera:
null = u'\u0000'
new_df = df.withColumn('e', regexp_replace(df['e'], null, ''))
Och sedan mappa till alla strängkolumner:
string_columns = ['d','e']
new_df = df.select(
*(regexp_replace(col(c), null, '').alias(c) if c in string_columns else c for
c in df.columns)
)