Help for this page

Select Code to Download


  1. or download this
    while ($data_in =~ /<container><a>(.+?)<\/a><b>(.+?)<\/b><\/container>
    +(<\?query\?>)??/ig)  {
      $data_out = "$2, $1$3 ";  errors here
      ; further processing here 
    }
    
  2. or download this
    while ($data_in =~ /<container><a>(.+?)<\/a><b>(.+?)<\/b><\/container>
    +(<\?query\?>)??/ig)  {
      if ($+ =~ /<\?query\?>/i) {;   errors here now
    ...
        }
      ; further processing here 
    }