Thread Ist .= eine Kurzschreibweise?
(8 answers)
Opened by mark05 at 2011-03-11 08:32
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"
|