$_ = 'This is "the search" string "that was" supplied'; while(/"(.*?)"|(\S+)/g) { if(defined $1) { push @quotes, $1; } else { push @keywords, $2; } }