HShbib
HShbib

Reputation: 1841

Add a single quote after and before a comma

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

Answers (1)

DiMono
DiMono

Reputation: 3368

You don't need regular expressions, just do a standard search and replace to replace , with ','

  • Ctrl+F
  • Click on "Replace"
  • , in the first field
  • ',' in the second field
  • Click on "Replace all"

Edit: if you only want to do a certain string, highlight it and click on the "In Selection" checkbox before clicking Replace All

Upvotes: 3

Related Questions