Thread regexp spaltenbasiert
(14 answers)
Opened by parafux at 2018-04-10 11:15
Reports.
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 use strict; use warnings; my ($col1, $col2, $col3); format STDOUT = @<<<<<<<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<< $col1, $col2, $col3 . while (<DATA>) { chomp; ($col1, $col2, $col3) = split /\s+/; write STDOUT; } __DATA__ xxxxx yyyyyy zzzzz xxxxx yyyyyy zzzzzzz xxxxx yyyyyy zzzzzz Ergibt |