http://www.perlmonks.org?node_id=1053733


in reply to Re^2: Regex random values pattern match and code efficiency
in thread Regex random values pattern match and code efficiency

just a basic regex loop.. try to adapt this..
use strict; my $value='$DOMAIN{HOST},$DOMAIN{IP},$DOMAIN{CONFIG}'; my @data = split(',',$value); foreach my $attributes (@data) { $attributes=~ m/(DOMAIN){(.+?)}/; print $2."\n"; }
prints:
HOST
IP
CONFIG

kindly perlig

Replies are listed 'Best First'.
Re^4: Regex random values pattern match and code efficiency
by AlexTape (Monk) on Sep 12, 2013 at 14:14 UTC
    lol.. why i was logged out?! ^^
    $perlig =~ s/pec/cep/g if 'errors expected';
Re^4: Regex random values pattern match and code efficiency
by Mark.Allan (Sexton) on Sep 13, 2013 at 12:18 UTC
    this works nicely until I bump into the following value then it crashes

    DEPLOY_PARAMS=$DOMAIN{HOST},$DOMAIN{IP},$DOMAIN{DEVICE,NAME}