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


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

Thanks for that advice, just an update to the first question which critically I missed off, I need only the values between {} for DEPLOY_PARAMS and not the entire string

  • Comment on Re^2: Regex random values pattern match and code efficiency

Replies are listed 'Best First'.
Re^3: Regex random values pattern match and code efficiency
by Anonymous Monk on Sep 12, 2013 at 14:13 UTC
    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
      lol.. why i was logged out?! ^^
      $perlig =~ s/pec/cep/g if 'errors expected';
      this works nicely until I bump into the following value then it crashes

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