Thread File::remove: need example (22 answers)
Opened by honky at 2006-05-23 15:04

GwenDragon
 2006-05-23 16:58
#66523 #66523
User since
2005-01-17
14748 Artikel
Admin1
[Homepage]
user image
perlop schreibt:
Quote
qw/STRING/

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.

View full thread File::remove: need example