show/hide this revision's text 2 added 5 characters in body

It'll probably be easier to search the string, grabbing each part, vs. split it.

Reason being, it's not going to be the easiest of tasks to single out spaces that are within quotes in a split regex.

You you can have it to split at the spaces before and after "will be". But, I can't think of any way to specify ignoring the space between inside a split.

(not actual Java)

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

regex = "\"((?!\\\").)+\"|[^ \"(\\\"|(?!\\\").)+\"|[^ ]+"; // search for a quoted or non-spaced group
final = new Array();

while (string.length > 0) {
    string = string.trim();
    if (Regex(regex).test(string)) {
        final.push(Regex(regex).match(string)[0]);
        string = string.replace(regex, ""); // progress to next "word"
    }
}


Also, capturing single quotes could lead to issues:

"Foo's Bar 'n Grill"

//=>

"Foo"
"s Bar "
"n"
"Grill"
show/hide this revision's text 1

It'll probably be easier to search the string, grabbing each part, vs. split it.

Reason being, it's not going to be the easiest of tasks to single out spaces that are within quotes in a split regex.

You can have it to split at the spaces before and after "will be". But, I can't think of any way to specify ignoring the space between inside a split.

(not actual Java)

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

regex = "\"((?!\\\").)+\"|[^ ]+"; // search for a quoted or non-spaced group
final = new Array();

while (string.length > 0) {
    string = string.trim();
    if (Regex(regex).test(string)) {
        final.push(Regex(regex).match(string)[0]);
        string = string.replace(regex, ""); // progress to next "word"
    }
}


Also, capturing single quotes could lead to issues:

"Foo's Bar 'n Grill"

//=>

"Foo"
"s Bar "
"n"
"Grill"