使用 Perl 将 html 中的阿拉伯字母读入 csv
我正在使用其中包含阿拉伯字母的 Html。我正在尝试将字母解析为 csv 文件,该文件默认在 Excel 中打开。
我正在使用 Perl 脚本来解析字母,但是我认为通过在 Perl 中使用
use feature 'unicode_strings';
这将允许 csv 存储阿拉伯字母,但事实并非如此。
有办法解决这个问题吗?
I am Working with Html that has Arabic lettering in it. I am trying to parse the lettering into a csv file that opens as default in Excel.
I am using a Perl script to parse the lettering out however I thought by using
use feature 'unicode_strings';
in the Perl this would allow the csv to store Arabic lettering however it does not.
Is there a way round this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用 Encode::Arabic;看看这是否有助于解析。
Try using Encode::Arabic; see if that helps the parsing.