gpt4 book ai didi

html - 将 html 实体解码为中文字符

转载 作者:太空宇宙 更新时间:2023-11-04 05:15:55 26 4
gpt4 key购买 nike

需要帮助我的curl 输出显示中文字符为(在Linux 终端上)

기타/부재시 집 앞에 놓고가셔&#46104
  1. 我需要中文字符的输出,例如 (기타/부재시 집 앞에 놓고і셔되)或-或-oR
  2. 如何在终端上将这些html实体转换为中文字符请注意我的机器上没有安装 php。所以我不能使用 html_entity_decode 或其他 php 解码方法

我的机器上安装了 perl 和 python。

最佳答案

只需通过这个简单的 Perl 替换来管道输出:

perl -CO -pe 's/&#(\d+);/chr $1/ge'
  • -p 逐行读取输入并在处理后打印每行
  • -CO 打开输出的 UTF-8 编码
  • /es/// 替换的替换部分评估为代码
  • chr仅返回字符集中给定数字的字符。

关于html - 将 html 实体解码为中文字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49495538/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com