Perl - 如何解码或替换 '从数据库到浏览器显示的单引号

发布于 2024-10-13 09:38:21 字数 745 浏览 3 评论 0原文

我发现了很多与此相关的问题,但是没有任何问题可以帮助我解决它。由于我缺乏专业知识而出现问题。

PHP 有 html_entity_decode ,它可能会有所帮助,但我相信 Perl 没有。

在我的 MySQL 数据库中,我有 ' " 描述中的以下长度:12' 6"

我希望它显示为 12' 6"。

我已经尝试过:

$string =~ s/:[']:/'/g;
$string =~ s/:["]:/"/g;
$string =~ s/'/'/g;
$string =~ s/"/"/g;
$string =~ s/\'/'/g;
$string =~ s/\"/"/g;
$string =~ s/\'/\'/g;
$string =~ s/\"/\"/g;
perl -pi -e 's:':':g' $_; #crashes.
perl -pi -e 's:":":g' $string #also crashes.
system -pi -e 's:':':g' $_; #crashes.
system -pi -e 's:":":g' $string #also crashes.

我不知所措。有人可以帮忙吗?

I have found lots of questions close to this but, nothing that helped me solve it. Prob due to my lack of expertise.

PHP has html_entity_decode which could have helped but, Perl does not, I believe.

In my MySQL database I have ' " following lengths in a description like: 12' 6"

I would like it to display as 12' 6".

I have tried:

$string =~ s/:[']:/'/g;
$string =~ s/:["]:/"/g;
$string =~ s/'/'/g;
$string =~ s/"/"/g;
$string =~ s/\'/'/g;
$string =~ s/\"/"/g;
$string =~ s/\'/\'/g;
$string =~ s/\"/\"/g;
perl -pi -e 's:':':g' $_; #crashes.
perl -pi -e 's:":":g' $string #also crashes.
system -pi -e 's:':':g' $_; #crashes.
system -pi -e 's:":":g' $string #also crashes.

I am at a loss. Can someone help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

逆流 2024-10-20 09:38:21

看看 HTML::Entities

use warnings;
use strict;
use HTML::Entities;

my $str = '12' 6"';
print decode_entities($str);

Have a look at HTML::Entities:

use warnings;
use strict;
use HTML::Entities;

my $str = '12' 6"';
print decode_entities($str);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文