I\'m looking to remove dollar signs from an entire python pandas dataframe. It\'s similar to this post:
Remove Entire Character
However, I\'m looking to remo
You need escape $ by \:
$
\
dftest[colstocheck] = dftest[colstocheck].replace({'\$':''}, regex = True) print (dftest) A B C D E F 0 1 4 f; s% 5 7 1 2 5 d: d; 3 4 2 3 6 sda%;sd d;p 6 3