नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
Syntax
Number.FromText(text as nullable text, optional culture as nullable text) as nullable number
About
Returns a number value from the given text value, text.
text: The textual representation of a number value. The representation must be in a common number format, such as "15", "3,423.10", or "5.0E-10".culture: An optional culture that controls howtextis interpreted (for example, "en-US").
Example 1
Get the number value of "4".
Usage
Number.FromText("4")
Output
4
Example 2
Get the number value of "5.0e-10".
Usage
Number.FromText("5.0e-10")
Output
5E-10