Page is a not externally linkable
Romeo - 11:27 pm on Jan 18, 2004 (gmt 0)
You may insert a simple regexp substitution (drop anything up to the first whitespace) as follows: HTH and regards,
... hmm, you really should get that camel-book ...
while(<INPUT>) {
if (/$pattern/) {
s/.*?\s//;
print;
R.