Help for this page

Select Code to Download


  1. or download this
    # data expected to be a number
    my ($iCount) = ($dataFromTheWeb =~ /^(\d+)$/);
    ...
    my ($sPath) = ($dataFromTheWeb =~ /^([\w\/]+)$/);
    
    # and so on...