string replace $ with ' ' function pandas code example
Example 1: find and replace string dataframe
df['range'] = df['range'].str.replace(',','-')
Example 2: str replace pandas
>>> pd.Series(['foo', 'fuz', np.nan]).str.replace('f.', 'ba', regex=True)
0 bao
1 baz
2 NaN
dtype: object