2 रिपॉजिटरी
Utilities that convert textual numeric representations into high-precision internal formats.
Distinct from String Parsing: Specific to numeric types and precision preservation, unlike general string-to-object parsing.
Explore 2 awesome GitHub repositories matching programming languages & runtimes · Numeric String Parsers. Refine with filters or upvote what's useful.
big.js is an arbitrary-precision decimal library for JavaScript designed to perform exact decimal arithmetic. It provides a set of tools for high-precision addition, subtraction, multiplication, and division to avoid the rounding errors common in binary floating-point representations. The library allows for the creation of custom number constructors to isolate precision settings and rounding rules for different groups of numbers. It supports configurable global precision and specific rounding behaviors, such as truncate or round half even, for division and power operations. The capability su
Parses numeric inputs as strings to preserve exact precision before internal representation.
accounting.js एक JavaScript लाइब्रेरी और उपयोगिता सूट है जो स्थानीयकृत संख्याओं और मुद्रा स्ट्रिंग्स को फॉर्मेट करने, दशमलव मानों को राउंड करने और मुद्रा स्ट्रिंग्स को पार्स करने के लिए है। यह भाषा-विशिष्ट विभाजकों और कस्टम प्रतीकों का उपयोग करके संख्यात्मक मानों को मानव-पठनीय स्ट्रिंग्स में बदलने के लिए टूल प्रदान करती है। इस लाइब्रेरी में प्रतीकों और विभाजकों को हटाकर स्वरूपित स्ट्रिंग्स से रॉ संख्यात्मक मान निकालने के लिए एक मुद्रा स्ट्रिंग पार्सर शामिल है। इसमें वित्तीय गणनाओं के दौरान बाइनरी परिशुद्धता त्रुटियों को रोकने के लिए डिज़ाइन किया गया एक फ्लोटिंग पॉइंट राउंडिंग टूल भी है। अतिरिक्त क्षमताएं वित्तीय तालिकाओं के लिए मुद्रा प्रतीकों और दशमलव बिंदुओं के ऊर्ध्वाधर संरेखण को कवर करती हैं। यह टूलसेट स्थानीयकृत संख्या फॉर्मेटिंग और विशिष्ट परिशुद्धता सेटिंग्स के साथ संख्याओं या संख्याओं के ऐरे को स्ट्रिंग्स में बदलने का भी समर्थन करता है।
Extracts raw numerical values from formatted strings by removing non-numeric characters and separators.