Subject: | Commas in cardinal and ordinal after threshold reached? |
Could there be a way to add commas to the numbers in cardinal and ordinal after the threshold is reached?
my $number = "1000";
my $threshold = "101";
my $comma = ",";
my $cardinal_number = noun($number)->cardinal($threshold)->comma($comma);
my $ordinal_number = noun($number)->ordinal($threshold)->comma($comma);
# or
my $cardinal_number = noun($number)->comma($comma)->cardinal($threshold);
my $ordinal_number = noun($number)->comma($comma)->ordinal($threshold);
# or
my $cardinal_number = noun($number)->cardinal($threshold, $comma);
my $ordinal_number = noun($number)->ordinal($threshold, $comma);
Lady Aleena