Paul Harwood wrote:
> 
> I know that
> 
> if ( /VALUE={1}(\d+)/ ) {
> 
> looks for the first occurrence of value. How do I find the last occurrence?

Probably the most efficient way:

my $rev = reverse $_;
if ( $rev =~ /(\d+)=EULAV/ ) {


John
-- 
use Perl;
program
fulfillment

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to