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

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:-)


  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
To convert a DOC file to DOCX format using Apache POI library, you can follow these steps: 1. Add the Apache POI dependency to your project. You can do this by adding the necessary JAR files to your project's build path or by using a dependency management tool like Maven or Gradle. 2. Use the following code snippet to perform the conversion: ```java import org.apache.poi.hwpf.HWPFDocument; import org.apache.poi.hwpf.converter.WordToConverter; import org.apache.poi.xwpf.usermodel.XWPFDocument; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.InputStream; import java.io.OutputStream; public class DocToDocxConverter { public static void main(String[] args) { try { // Load the DOC file InputStream inputStream = new FileInputStream("input.doc"); HWPFDocument document = new HWPFDocument(inputStream); // Create an empty output DOCX file OutputStream outputStream = new FileOutputStream("output.docx"); XWPFDocument convertedDocument = new XWPFDocument(); // Convert the DOC file to DOCX format WordToConverter converter = new WordToConverter(convertedDocument); converter.processDocument(document); // Save the converted document to the output file convertedDocument.write(outputStream); // Close the streams outputStream.close(); inputStream.close(); System.out.println("Conversion completed successfully."); } catch (Exception e) { e.printStackTrace(); } } } ``` Make sure to replace "input.doc" with the path to your input DOC file and "output.docx" with the desired path for the output DOCX file. 3. Run the code, and it will convert the DOC file to DOCX format and save it as "output.docx" in the specified location. Please note that this code is based on Apache POI version 5.x, which supports the conversion of DOC to DOCX. If you are using an older version of Apache POI, you might need to use different classes or methods for the conversion.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值