Evaluates to a list of the words extracted out of STRING, using embedded whitespace as the word delimiters. It can be understood as being roughly equivalent to:
split(' ', q/STRING/);
Das bedeutet, dass eine Liste aus dem Muster erzeugt wird, wobei das Leerzeichen als Wortgrenze angesehen wird.