http://qs321.pair.com?node_id=111084


in reply to Re: split question (boo)
in thread split question

Or if he really wants the "remainder":
my $inLine= "RPC, rpc #001b, (1987)"; $inLine =~ /([^(]+)\((\d+)\)/; my ($remainder, $date) = ($1, $2);
.. assuming $inline is the only line of data...