Thread Gewisse Stelle im String ansprechen
(6 answers)
Opened by Umut at 2015-10-09 14:20 Guest Umut Ist zwar auch seltsam, aber: Code (perl): (dl
)
1 2 3 4 5 6 7 8 #!/usr/bin/perl use warnings; use strict; my $a = "Hallo"; print "$a\n"; substr($a, 1, 1) = ""; print "$a\n"; |