jQueryプラグインまたはregex-solutionを使用して、JavaScriptで数値をフォーマットしたり、変更したり、丸めたり、ゼロを追加することなく探しています。数はで行き、戻って3つの規則に従って書式設定されています: - 数千人が をセパレータ - 小数 の数 - 理想のセパレーターここ変更なしでjavascriptで数字を構成する
は、私が探しています何のいくつかの例です:
Thousands: Comma, Decimals: 0, Separator: Point
Input: 1000 » Output: 1,000
Input: 100000 » Output: 100,000
Thousands: Space, Decimals: 2, Separator: Comma
Input: 1000 » Output: 10,00
Input: 100000 » Output: 1 000,00
Thousands: Comma, Decimals: 1, Separator: Point
Input: 1000 » Output: 100.0
Input: 100000 » Output: 10,000.0
変更なし...結果? –
見出しを「変更せずに」に変更しました。私が見つけたすべてのソリューションは、小数点が定義されているときに2つのゼロを追加します。私はすべての数字を追加しないでください。セパレータのみ。 –
負数の場合の書式設定方法 – Gerard