show/hide this revision's text 4 Updated regex and added ref link

There are several questions on StackOverflow that cover this same question in various contexts using regular expressions. For instance:

UPDATE: here's a modification of a Sample regex from one of the above posts, modified to work with handle single or and double quoted strings.

m/('[^']+'|"[^"]+"|[^"\s]+|[^'\s]+)/g
Ref: How can I split on a string except when inside quotes?

m/('.*?'|".*?"|\S+)/g

Tested this with a quick Perl snippet and the output was : as reproduced below. Also works for empty strings or whitespace-only strings if they are between quotes (not sure if that's desired or not).

This
is
a
string
that
"will be"
highlighted
when
your
'regular expression'
matches
something.

Note that this does include the quote characters themselves in the matched values, though you can remove that with a string replace, or modify the regex to not include them. I'll leave that as an exercise for the reader or another poster for now, as 2am is way too late to be messing with regular expressions anymore ;)

show/hide this revision's text 3 fixed regex

There are several questions on StackOverflow that cover this same question in various contexts using regular expressions. For instance:

UPDATE: here's a modification of a regex from one of the above posts, modified to work with single or double quoted strings.

m/(["'][^"']+["']|[^'"\s]+)/g

m/('[^']+'|"[^"]+"|[^"\s]+|[^'\s]+)/g

Tested this with a quick Perl snippet and the output was:

This
is
a
string
that
"will be"
highlighted
when
your
'regular expression'
matches
something.

Note that this does include the quote characters themselves in the matched values, though you can remove that with a string replace, or modify the regex to not include them. I'll leave that as an exercise for the reader or another poster for now, as 2am is way too late to be messing with regular expressions anymore ;)

show/hide this revision's text 2 modified regex to match single-quoted strings

There are several questions on StackOverflow that cover this same question in various contexts using regular expressions. For instance:

General consenus seems

UPDATE: here's a modification of a regex from one of the above posts, modified to be work with single or double quoted strings.

m/(["'][^"']+["']|[^'"\s]+)/g

Tested this with a quick Perl snippet and the following regexesoutput was:

/("[^"]+"|[^"\s]+)/g

or

/([^"^\s]+)\s*|"([^"]+)"\s*/

This
expression states that is
a
string
that
"word"
  is either (1) non-quotewill be"
highlighted
when
your
'regular expression'
matches
something.

Note that this does include the quote characters themselves in the matched values, non-whitespace text surrounded by whitespacethough you can remove that with a string replace, or (2) non-quote text surrounded by quotes (followed by some whitespace). Note modify the use of capturing parentheses regex to highlight the desired textnot include them. I'll leave that as an exercise for the reader or another poster for now, as 2am is way too late to be messing with regular expressions anymore ;)

show/hide this revision's text 1