Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi I need to get to $submitkey a value mjxjezhmgrutgevclt0qtyayiholcdctuxbwb. What's wrong with my code?

my $str = '<input type="hidden" value="set" name="fr.posted"></input><input type="hidden" value="mjxjezhmgrutgevclt0qtyayiholcdctuxbwb" name="fr.submitKey"></input><div class="form-actions form-actions__centrate"><button value="clicked" id="hook_FormButton_button_accept_request" onclick="className +=" button-loading"" class="button-pro form-actions__yes" type="submit" name="button_accept_request"><span class="button-pro_tx">Войти</span>';
($submitkey) = $str =~ m/value="(.*?)" name="fr.submitKey"/;
print $submitkey;
share|improve this question
1  
Not entirely sure what you're trying to achieve, could you please clarify the question? – Serge Belov Nov 14 '12 at 20:41

3 Answers

up vote 1 down vote accepted

You are matching from the first instance of value all the way until "fr.submitKey".

Take advantage of the fact that every value is contained within quotes; only look for non-quote characters as part of the value.

Additionally, it is cleaner to use the special capturing-group variables:

my $str = '<input type="hidden" value="set" name="fr.posted"></input><input type="hidden" value="mjxjezhmgrutgevclt0qtyayiholcdctuxbwb" name="fr.submitKey"></input><div class="form-actions form-actions__centrate"><button value="clicked" id="hook_FormButton_button_accept_request" onclick="className +=" button-loading"" class="button-pro form-actions__yes" type="submit" name="button_accept_request"><span class="button-pro_tx">Войти</span>';
$str =~ m/value="([^"]*)" name="fr.submitKey"/;
$submitkey = $1;
print $submitkey;
share|improve this answer

Never use .*?. It's never what you are actually trying to do. Even if you get it to work, it's far too likely to create extremely bad performance when there is no match. In this case, use [^"]*

share|improve this answer
Full code please – user1824906 Nov 14 '12 at 20:28
3  
Code that changes .*? to [^"]*? perl -i -pe's/\.\*\?/\[\^"\]\*/g' yourscript.pl – ikegami Nov 14 '12 at 20:30
Do you really need to escape the RHS of the substitution? =) – TLP Nov 14 '12 at 20:35

.*? does not cause Perl to search for the shortest possible match inside the whole string. Therefore the text before the .*? matches earlier in the string, and Perl is happy that it finds a match there. .*? simply means that it matches as few characters as possible from that first point where the part before .*? matches.

As @ikegami said: use [^"]* instead in your particular case.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.