Help for this page

Select Code to Download


  1. or download this
    my $test_string = q|
         [lien "dfgdgdg"][img]sdfsdfsdf[/img][/url]
    ...
        while ($test_string =~ m%\[url=([\?\%\:\/a-zA-Z0-9_\-\.=]+)\]\[img
    +\]([\?\%\:\/a-zA-Z0-9_\-\.=]+)\[/img\]%gix) {
            print "FOO: $1 , and $2 \n";
        }
    
  2. or download this
            FOO: dfgdgdg , and sdfsdfsdf
    FOO: dfgdgdg33 , and sdfsdfsdf
    FOO: http://www.smileycentral.com/?partner=ZSzeb001 , and http://smile
    +ys.smileycentral.com/cat/12/12_1_220.gif
    
  3. or download this
        while ($test_string =~ m%\[lien \"([\?\%\:\/a-zA-Z0-9_\-\.=]+)\"\]
    +\[img\]([\?\%\:\/a-zA-Z0-9_\-\.=]+)\[/img\]\[/lien\]%gix) {
            print "FOO: $1 , and $2 \n";
        }