in reply to Re^2: Steps to get a substring from a string
in thread Steps to get a substring from a string

Let me reiterate what CountZero told you earlier
if ($string =~ m/name=([^.]+)/) { my $variable_i_am_interested_in = $1; }