gpt4 book ai didi

perl - 如何按国家/地区获取货币?

转载 作者:行者123 更新时间:2023-12-02 04:10:59 36 4
gpt4 key购买 nike

你们将如何找出仅具有国家代码的货币?在Perl中是理想的选择,但我认为任何其他语言解决方案都将很容易移植。

谢谢

最佳答案

看起来CPAN中的Locale::Object::Currency包含了您所需要的。不过,自2007年以来似乎尚未进行过更新。

#!/usr/bin/perl

use Locale::Object::Currency;
use Data::Dumper;
use strict;
use warnings;

my $bucks = Locale::Object::Currency->new( country_code => 'us' );
print Dumper( $bucks->symbol, $bucks->code, $bucks->name ); # etc..

#print Dumper $bucks; # don't do this in production; use the method interface;
# but it does appear to have the info you need.

关于perl - 如何按国家/地区获取货币?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5219935/

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