Suche…


parse_line ()

Verwenden von parse_line() von Text :: ParseWords :

use 5.010;
use Text::ParseWords;

my $line = q{"a quoted, comma", word1, word2};
my @parsed = parse_line(',', 1, $line);
say for @parsed;

Ausgabe:

"a quoted, comma"
 word1
 word2

Text :: CSV oder Text :: CSV_XS

use Text::CSV; # Can use Text::CSV which will switch to _XS if installed
$sep_char = ",";
my $csv = Text::CSV->new({sep_char => $sep_char});
my $line = q{"a quoted, comma", word1, word2};
$csv->parse($line);
my @fields = $csv->fields();
print join("\n", @fields)."\n";

Ausgabe:

a quoted, comma
 word1
 word2

ANMERKUNGEN

  • Standardmäßig entfernt Text :: CSV keine Leerzeichen um Trennzeichen, wie dies bei Text::ParseWords Fall ist. Durch Hinzufügen von allow_whitespace=>1 zu Konstruktorattributen wird dieser Effekt erzielt.

    my $csv = Text::CSV_XS->new({sep_char => $sep_char, allow_whitespace=>1});  
    

    Ausgabe:

    a quoted, comma
    word1
    word2
    
  • Die Bibliothek unterstützt Escape-Zeichen für Sonderzeichen (Anführungszeichen, Trennzeichen).

  • Die Bibliothek unterstützt konfigurierbare Trennzeichen, Anführungszeichen und Escape-Zeichen

Dokumentatoin: http://search.cpan.org/perldoc/Text::CSV



Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow