Thread Ist .= eine Kurzschreibweise? (8 answers)
Opened by mark05 at 2011-03-11 08:32

FIFO
 2011-03-11 08:36
#146378 #146378
User since
2005-06-01
469 Artikel
BenutzerIn

user image
Hi und willkommen!
$x .= $y ist dasselbe wie $x = $x . $y, also String-Verkettung.
Funktioniert auch mit +=, -=, |=, ||= etc. pp
Gruß FIFO

PS: guckstu bei perldoc perlop unter "Assignment Operators".

Editiert von FIFO: PS
Last edited: 2011-03-11 08:42:26 +0100 (CET)
Everyone knows that debugging is twice as hard as writing a program in the first place. So if you're as clever as you can be when you write it, how will you ever debug it? -- Brian Kernighan: "The Elements of Programming Style"

View full thread Ist .= eine Kurzschreibweise?