Help for this page

Select Code to Download


  1. or download this
    use LWP::UserAgent;
    open($F, '>:utf8' , 'wide-chars-example.html');
    $url = 'http://www.w3schools.com/tags/ref_symbols.asp';
    $html = LWP::UserAgent->new()->get($url)->content;
    print $F $html;
    
  2. or download this
    your_method: {
       local $/ = 2;
       #open 'wide-chars-example.html', process the 'records'
    }