Inline::Perl5 无法与 Lingua::En::Titlecase Perl 模块一起使用

发布于 2025-01-12 21:48:35 字数 443 浏览 0 评论 0原文

明白了:

use Lingua::En::Titlecase:from<Perl5>;

# this line is straight from doc
my $tc = Lingua::EN::Titlecase.new("CAN YOU FIX A TITLE?");

明白了:

Could not find symbol ''&Titlecase'' in ''GLOBAL::Lingua::EN''

据我所知,大约一个月前,当我尝试使用 Inline::Perl5 时,它对我有用。不确定我做错了什么。 文档 没有为我提供任何线索

Got this:

use Lingua::En::Titlecase:from<Perl5>;

# this line is straight from doc
my $tc = Lingua::EN::Titlecase.new("CAN YOU FIX A TITLE?");

Get this:

Could not find symbol ''&Titlecase'' in ''GLOBAL::Lingua::EN''

As I recall, Inline::Perl5 worked for me when I kicked its tires about a month ago. Not sure what I'm doing wrong. Docs didn't shed any light on things for me

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

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

发布评论

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

评论(1

昔梦 2025-01-19 21:48:35

在“GLOBAL::Lingua::EN”中找不到符号“&Titlecase”

错误的原因是您将 Inline::Perl5 与 perl 模块 Lingua 一起使用::En::Titlecase 不存在。您需要在“EN”中输入大写“N”:

use Lingua::EN::Titlecase:from<Perl5>;
my $tc = Lingua::EN::Titlecase.new("CAN YOU FIX A TITLE?");
say $tc;

输出

Can You Fix a Title?

Could not find symbol ''&Titlecase'' in ''GLOBAL::Lingua::EN''

The reason for the error is that you used Inline::Perl5 with perl module Lingua::En::Titlecase which does not exist. You need a captial "N" in "EN":

use Lingua::EN::Titlecase:from<Perl5>;
my $tc = Lingua::EN::Titlecase.new("CAN YOU FIX A TITLE?");
say $tc;

Output:

Can You Fix a Title?
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文