Help for this page

Select Code to Download


  1. or download this
    
    $line = "{chart {{1 {{title title_1} {xlable X-lab} {ylable Y-lab} {de
    +scription desc1} {type line} {series {{1 {{x_data {1 2 3 4 5}} {y_dat
    +a {20 90 60 50 30}}}}}}}}}}";
    ...
    
    print "Y DATA : $1 \n";
    
  2. or download this
      if ($line =~ /x_data\s+\{(.*?)\}/) {
           print "X DATA : $1 \n";
    ...
      if ($line =~ /y_data\s+\{(.*?)\}/) {
           print "Y DATA : $1 \n";
      }