Hello monks,
Well, it's been a while since I've been active here; I have been helping other with coding, on such places as OpenNAP, and of course, IRC. -- When others paste code, it's always a good idea to parse the code, and exclude their nick, or other appended information; So I wrote an all purpose chat client paste parser.
#!/usr/bin/perl -w
# Chat client paste parser
# Author: dusk
use strict;
die "Usage: $0 [input file] [output file] [nick] [0:1]\n" unless $ARGV
+[3];
warn "Remember: 0 and 1 denote timestamped, or not -- respectively\n";
my $nick = $ARGV[2];
open (INPUT, "$ARGV[0]");
foreach (<INPUT>) {
open (OUTPUT, ">>$ARGV[1]");
if ($ARGV[3] == 0) { print OUTPUT "$1\n" if /^\W$nick\W\s(.*)/ }
else { print OUTPUT "$1\n" if /^\W\d.*\W\s\W$nick\W\s(.*)/ }
}
close OUTPUT;
close INPUT;
Edit ar0n -- fixed whitespace
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.