in reply to Re: Re: Variable-width negative lookbehind
in thread Variable-width negative lookbehind
Crap! This almost does it, but I have to run to work. Maybe this will give you some ideas?
#!/usr/local/bin/perl -wl use strict; use Test::More qw'no_plan'; + my %strings = ( XAA => 'XAA', YXAA => 'YXAA', YXAAXAA => 'YXAA', XAAXAA => 'XAAAA', VXAAXAA => 'VAAAA', AA => 'AA', YAA => 'YAA', YXX => 'YX', ); + while (my ($orig_string, $result) = each %strings) { my $string = $orig_string; $string = scalar reverse $string; # last or directly before a Y $string =~ s/X(?!Y|\Z)//g; $string = scalar reverse $string; is($string, $result, "$orig_string => $result"); }
Cheers,
Ovid
New address of my CGI Course.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Variable-width negative lookbehind
by dragonchild (Archbishop) on May 05, 2004 at 14:40 UTC |