I have some strings that I want to delete some unwanted characters from them.
For example: Adam'sApple ----> AdamsApple.(case insensitive)
Can someone help me, I need the fastest way to do it, cause I have a couple of millions of records that have to be polished.
Thanks
I have some strings that I want to delete some unwanted characters from them.
Share
One simple way:
… or take a look at regex substitutions.