共用方式為


Number.FromText

語法

Number.FromText(text as nullable text, optional culture as nullable text) as nullable number

關於

根據指定的文字值 text,傳回 number 值。

  • text:數值的文字表示法。 該表示法必須是常見的數字格式,例如 "15"、"3,423.10"、"5.0E-10"。
  • culture:選擇性的文化特性,可控制如何解譯 text (例如,"en-us")。

範例 1

取得 "4" 的數值。

使用方式

Number.FromText("4")

輸出

4

範例 2

取得 "5.0e-10" 的數值。

使用方式

Number.FromText("5.0e-10")

輸出

5E-10