Regular Expression Perl

@a = qw(This is a test);
@b = grep/^\w{4}/, @a;
print "@b";