in reply to Re^2: Split string only on regular expression match
in thread Split string only on regular expression match

I used a simpler regular expression to do what I want as:
my @got = $string_c !~ /^\w+\s+\w+$/ig ? () : split /\s/, $string_c;