How can I split a pipe-separated string in a list? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T04:25:22Zhttp://stackoverflow.com/feeds/question/164865http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/164865/how-can-i-split-a-pipe-separated-string-in-a-list2How can I split a pipe-separated string in a list? The.Anti.92008-10-02T22:17:20Z2009-01-07T22:50:36Z
<p>Here at work we are working on a newsletter system that our clients can use. As an intern one of my jobs is to help with the smaller pieces of the puzzle. In this case what I need to do is scan the logs of the email server for bounced messages and add the emails and the reason the email bounced to a "bad email database".</p>
<p>The bad emails table has two columns: 'email' and 'reason'
I use the following statement to get the information from the logs and send it to the Perl script</p>
<pre><code>grep " 550 " /var/log/exim/main.log | awk '{print $5 "|" $23 " " $24 " " $25 " " $26 " " $27 " " $28 " " $29 " " $30 " " $31 " " $32 " " $33}' | perl /devl/bademails/getbademails.pl
</code></pre>
<p>If you have sugestions on a more efficient awk script, then I would be glad to hear those too but my main focus is the Perl script. The awk pipes "foo@bar.com|reason for bounce" to the Perl script. I want to take in these strings, split them at the | and put the two different parts into their respective columns in the database. Here's what I have:</p>
<pre><code>#!usr/bin/perl
use strict;
use warnings;
use DBI;
my $dbpath = "dbi:mysql:database=system;host=localhost:3306";
my $dbh = DBI->connect($dbpath, "root", "******")
or die "Can't open database: $DBI::errstr";
while(<STDIN>) {
my $line = $_;
my @list = # ? this is where i am confused
for (my($i) = 0; $i < 1; $i++)
{
if (defined($list[$i]))
{
my @val = split('|', $list[$i]);
print "Email: $val[0]\n";
print "Reason: $val[1]";
my $sth = $dbh->prepare(qq{INSERT INTO bademails VALUES('$val[0]', '$val[1]')});
$sth->execute();
$sth->finish();
}
}
}
exit 0;
</code></pre>
http://stackoverflow.com/questions/164865/how-can-i-split-a-pipe-separated-string-in-a-list/164892#1648926Answer by zigdon for How can I split a pipe-separated string in a list? zigdon2008-10-02T22:25:08Z2009-01-07T22:50:36Z<p>I'm not sure what you want to put in @list? If the awk pipes one line per entry, you'll have that in $line, and you don't need the for loop on the @list.</p>
<p>That said, if you're going to pipe it into Perl, why bother with the grep and AWK in the first place? </p>
<pre><code>#!/ust/bin/perl -w
use strict;
while (<>) {
next unless / 550 /;
my @tokens = split ' ', $_;
my $addr = $tokens[4];
my $reason = join " ", @tokens[5..$#tokens];
# ... DBI code
}
</code></pre>
<p>Side note about the DBI calls: you should really use placeholders so that a "bad email" wouldn't be able to inject SQL into your database.</p>
http://stackoverflow.com/questions/164865/how-can-i-split-a-pipe-separated-string-in-a-list/164893#1648935Answer by toolkit for How can I split a pipe-separated string in a list? toolkit2008-10-02T22:25:33Z2009-01-07T22:49:29Z<p>Why not forgo the grep and awk and go straight to Perl?</p>
<p>Disclaimer: I have not checked if the following code compiles:</p>
<pre><code>while (<STDIN>) {
next unless /550/; # skips over the rest of the while loop
my @fields = split;
my $email = $fields[4];
my $reason = join(' ', @fields[22..32]);
...
}
</code></pre>
<p>EDIT: See <a href="http://stackoverflow.com/users/18625/dland">@dland's comment</a> for a further optimisation :-)</p>
<p>Hope this helps?</p>
http://stackoverflow.com/questions/164865/how-can-i-split-a-pipe-separated-string-in-a-list/164906#1649067Answer by Glomek for How can I split a pipe-separated string in a list? Glomek2008-10-02T22:28:58Z2008-10-02T22:28:58Z<p>Something like this would work:</p>
<pre><code>while(<STDIN>) {
my $line = $_;
chomp($line);
my ($email,$reason) = split(/\|/, $line);
print "Email: $email\n";
print "Reason: $reason";
my $sth = $dbh->prepare(qq{INSERT INTO bademails VALUES(?, ?)});
$sth->execute($email, $reason);
$sth->finish();
}
</code></pre>
<p>You might find it easier to just do the whole thing in Perl. "next unless / 550 /" could replace the grep and a regex could probably replace the awk.</p>
http://stackoverflow.com/questions/164865/how-can-i-split-a-pipe-separated-string-in-a-list/164909#1649093Answer by Jonathan Leffler for How can I split a pipe-separated string in a list? Jonathan Leffler2008-10-02T22:35:07Z2008-10-02T22:35:07Z<pre><code>my(@list) = split /\|/, $line;
</code></pre>
<p>This will generate more than two entries in @list if you have extra pipe symbols in the tail of the line. To avoid that, use:</p>
<pre><code>$line =~ m/^([^|]+)\|(.*)$/;
my(@list) = ($1, $2);
</code></pre>
<p>The dollar in the regex is arguably superfluous, but also documents 'end of line'.</p>
http://stackoverflow.com/questions/164865/how-can-i-split-a-pipe-separated-string-in-a-list/165932#1659325Answer by Ovid for How can I split a pipe-separated string in a list? Ovid2008-10-03T06:44:41Z2008-10-03T06:44:41Z<p>Have you considered using <a href="http://search.cpan.org/dist/ack/ack" rel="nofollow">App::Ack</a> instead? Instead of shelling out to an external program, you can just use Perl instead. Unfortunately, you'll have to read through the <a href="http://search.cpan.org/src/PETDANCE/ack-1.86/ack" rel="nofollow">ack</a> program code to really get a sense of how to do this, but you should get a more portable program as a result.</p>