套件 | flash.globalization |
類別 | public final class NumberParseResult |
繼承 | NumberParseResult Object |
語言版本: | ActionScript 3.0 |
執行階段版本: | Flash Player 10.1, AIR 2 |
數字字串可以在數字前後包含字首與字尾。在這樣的情況下,startIndex
屬性會設定為數字的第一個字元。另外,endIndex
屬性會設定為接在數字最後一個字元後面的字元索引。
相關 API 元素
公用屬性
屬性 | 定義自 | ||
---|---|---|---|
constructor : Object
類別物件的參照或是特定物件實體的建構函數。 | Object | ||
endIndex : int [唯讀]
輸入字串的數字部分中,最後一個字元後之字元的索引。 | NumberParseResult | ||
startIndex : int [唯讀]
輸入字串的數字部分中,第一個字元的索引。 | NumberParseResult | ||
value : Number [唯讀]
輸入字串中數字部分的值。 | NumberParseResult |
公用方法
方法 | 定義自 | ||
---|---|---|---|
建構數字剖析結果物件。 | NumberParseResult | ||
指出物件是否有已定義的指定屬性。 | Object | ||
指出 Object 類別的實體是否位於指定為參數的物件原型鏈中。 | Object | ||
指出指定的屬性是否存在,以及是否可列舉。 | Object | ||
為迴圈作業設定動態屬性的可用性。 | Object | ||
傳回代表此物件的字串,根據地區特定慣例進行格式化。 | Object | ||
會傳回指定之物件的字串形式。 | Object | ||
會傳回指定之物件的基本值。 | Object |
屬性詳細資訊
endIndex | 屬性 |
startIndex | 屬性 |
value | 屬性 |
建構函式詳細資料
NumberParseResult | () | 建構函式 |
public function NumberParseResult(value:Number = NaN, startIndex:int = 0x7fffffff, endIndex:int = 0x7fffffff)
語言版本: | ActionScript 3.0 |
執行階段版本: | Flash Player 10.1, AIR 2 |
建構數字剖析結果物件。NumberParseResult 物件通常是由 NumberFormatter.parse()
和 NumberFormatter.parseNumber()
方法所建立,而不是直接呼叫此建構函式所建立的。
value:Number (default = NaN ) — 輸入字串中數字部分的值。
| |
startIndex:int (default = 0x7fffffff ) — 輸入字串中數字第一個字元的索引。
| |
endIndex:int (default = 0x7fffffff ) — 輸入字串中,數字最後一個字元後的字元之索引。
|
相關 API 元素
Tue Jun 12 2018, 03:47 PM Z