Reputation: 1841
Hi I am trying to insert a single quote (') after and before a comma in my text string.
E.g. ptprptitrklgfd','sofpdsofksdlfd','weroweprewfmvrewrewrieowrioewirew','
Any ideas ?
Upvotes: 1
Views: 5266
Reputation: 3368
You don't need regular expressions, just do a standard search and replace to replace ,
with ','
,
in the first field','
in the second fieldEdit: if you only want to do a certain string, highlight it and click on the "In Selection" checkbox before clicking Replace All
Upvotes: 3