Guten Tag
In einer CSV Datei steht z.B.:
ABC_YXZ[0];
ABC_YXZ[1];
ABC_YXZ[2];
ABC_YXZ[3];
ABC_YXZ[4];
ABC_YXZ[?];
Nun will ich nicht mit ABC_YXZ[0] sondern mit ABC_YXZ[13] beginnen.
ABC_YXZ[13];
ABC_YXZ[14];
ABC_YXZ[15];
ABC_YXZ[16];
ABC_YXZ[17];
ABC_YXZ[??];
Folgenden Perl-Script Suchen/Ersetzen Ansatz habe ich gefunden (getestet):
perl -i.bak -pe "s/ABC/DEF/g" test.csv
Hat soweit gut funktioniert, ist aber nicht die Lösung.
Mit meinen minimalen C Kenntnissen denke ich natürlich gleich an eine FOR Schleife in der man den Such-String und Ersatz-String zusammensetzt usw.
Wie stelle ich das mit Perl an?
Grüsse, Olli
PS:
D:\tmp\perl\>perl -v
This is perl, v5.10.0 built for MSWin32-x86-multi-thread
(with 1 registered patch, see perl -V for more detail)
Copyright 1987-2007, Larry Wall
Binary build 1001 [283495] provided by ActiveState http://www.ActiveState.com
Built Dec 18 2007 08:46:15
Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.
Complete documentation for Perl, including FAQ lists, should be found on
this system using "man perl" or "perldoc perl". If you have access to the
Internet, point your browser at http://www.perl.org/, the Perl Home Page.