in reply to simple regex question

I figured out the problem, I needed to use parenthesis around the lvalue

i.e. ($value) = $string =~ /password=(.+?)&/;

thanks!