I would like to format a text. I mean something like this: I\'d like to transform this:
\"something\'text between apostrophes\'text\"
into
You can try this regex:
('[^']+')
and replace by this:
" $1 "
Regex 101 Demo