Help for this page

Select Code to Download


  1. or download this
      my @strings = $self->expand_string($foo);
    
  2. or download this
      my @strings = $self->expand_string($foo, sub {
        /^VAR1$/ && return $blah;
        /^VAR2$/ && return @some_list;
        $self->expand_variable()
      } );