http://www.perlmonks.org?node_id=467660


in reply to shortening substitutions

Why do you want to do that? These four statements are very readable, combining them into one complex one would result in less readily understandable code.

In addition to that, I think an equivalent single regex would be tricky to think of. Just consider the delicate details:

Trying to preserve all that in a single statement makes my head hurt.

Some of these complexities are maybe in error. I do not know what you are trying to do, of course, but perhaps you want to strip all quotation marks, not only the first one. Once you need to debug code, four simple regex are easier to grasp than one complex regex.

So, I would suggest to stick with what you have now.