in reply to Re^3: UrlLib and urllib2 python to perl
in thread UrlLib and urllib2 python to perl
To help with the first question that our fellow Anonymonk named: it tries to match the regex (first parameter) in the string (second parameter). .group(0) returns the matched string.
Differences between Python and Perl:
/name="id" value="[A-Za-z0-9]*" size=/
The python code then splits the found match to extract the part after value=. I would use a group instead, even in Python. I would write
Although afterwards the values aren't in variables $id, $param1, etc but in $v["id"] etc, however this might come in handy anyway, because most probably the things you will be doing to each of them will be similiar, and you can do them by employing similiar loops.for (qw(id param1 param2 sessId) { $response_data =~ /name="$_" value="([A-Za-z0-9]*)" size=/; $v[$_] = $1; }
|
|---|