如何在 Perl 中 URI 转义日语字符?
如何在 Perl 中 URI 转义日语字符?
How do I URI escape Japanese characters in Perl?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 Perl 中 URI 转义日语字符?
How do I URI escape Japanese characters in Perl?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
URI::Escape
模块将能够处理日语字符,就像 URI 中的任何其他不安全或特殊字符一样。一般来说,当您在 Perl 中寻找某些功能时,尤其是一些看起来像在 URI 中转义某些内容一样常见的功能,您应该参考 首先http://search.cpan.org。当搜索您在问题中使用的任何关键字时,
URI::Escape
可能位于结果的最顶部。The
URI::Escape
module will be able to handle japanese characters, just like any other unsafe or special character un URIs.Generally, when you're looking for some functionality in Perl, especially some that would seem as common as escaping things in URIs, you should consult http://search.cpan.org first.
URI::Escape
would probably have been at the very top of the results when searching for any of the keywords you used in your question.您需要提及日语字符的编码方式。
如果您使用 UTF-8 并且还使用 Perl 的内置 Unicode 编码,那么您可以使用以下内容:
如果您的日语字符使用某种格式进行编码,例如 EUC-JP、Shift -JIS,或者其他类似的东西,你需要指定你需要什么样的URI转义。标准的东西
会给你一些 URI 编码的东西,但它对另一端不一定有意义。例如,如果您正在为 WWWJDIC 创建 URL,则对于 UTF-8,要查找渮的 URI 是这样的:
但对于 EUC-JP,同一页面如下所示:
Perl 将为您执行任一操作,但您需要具体说明你的出发点是什么。
You need to mention what encoding the Japanese characters are in.
If you are using UTF-8 and also using Perl's built-in Unicode encoding, then you can use this:
If your Japanese characters are encoded using some format like EUC-JP, Shift-JIS, or other such things, you need to specify what kind of URI escaping you require. The standard things like
will give you something which is URI encoded but it isn't necessarily meaningful to the other end. For example if you are making a URL for WWWJDIC, the URI to look up 渮 is this for UTF-8:
But for EUC-JP the same page looks like this:
Perl will do either one for you but you need to be specific about what your starting point is.