How can convert character “%xx” in html using Perl

來源:互聯網
上載者:User

Submitted a question on StackOverflow just now. 

I intended to extract content from a web page which contains many unicode characters represented in the form of "%xx". As I used Perl module LWP to get web page, naturally handled these unicode characters using Perl Regex as below.

my $html = "%20%26%40 ";$html =~ s#%([0-9a-f]+)#\x{\1}#ig;print "$html\n";

But above code dosen't work, it output nothing but "00". Get stuck now ... Any hint would be appreciated.

Some people replied very quickly. Below are their answers. 

Perl has functions built in the URI::Escape module
for this already. You don't need to mess with regular expressions

use URI::Escape;my $encode = uri_unescape($string);

See this page for more

Funny and ugly code :

my $html = "%20%26%40 ";$html =~ s#%([0-9a-f]{2})#"chr(0x$1)"#igee;print "$html\n";

Edit : (I'm obliged to say) this code is maybe cute, but do not use
this in production ! (there are many cases where it's not working)

You can observe all the discussion here  http://stackoverflow.com/questions/12144401/how-can-convert-character-xx-in-html-using-perl.

I should say StackOverflow is indeed a great place for technical people:-)


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.