Thread dateien löschen
(25 answers)
Opened by DerVersuch at 2010-01-14 22:01
Um bei:
Code (perl): (dl
)
1 2 3 4 5 if (my (@captures) = $expr =~ /regex/) { # do something with @captures } else { # did not match } Code (perl): (dl
)
1 2 3 4 5 6 if (my (@captures) = $expr =~ /(abc)ijk(def)lmn/) { # do something with @captures print "Daten $captures[0] sind vor $captures[1]"; } else { # did not match } Ich fand ganz früher als Lernende die Nomenklatur mit $1 $2 ... irgendwie nachvollziehbarer. |