-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question: formatter with separators but without currency #154
Comments
ndberg
changed the title
Question:
Question: formatter with separators but without currency
Oct 20, 2023
Hi @ndberg
Eg: Money::USD(10)->format(locale: 'en') |
Thanks @ricardogobbosouza for reaching back to me. What I need is CHF in de_CH:
|
At the moment I recommend you create your formatter. I'm working on a new formatter |
Ok, thanks, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for this package.
Question, Is there a way to format a Number like this:
4’500.00
(searched, but couldn't find)My Result should be with decimal AND thousands separator, but without currency.
If I Use ==> I get:
$money->formatByIntlLocalizedDecimal() ==> CHF 4’500.00
$money->formatByDecimal() ==> 4500.00
Or do I have to make an own formatter?
The text was updated successfully, but these errors were encountered: