Character.IsUnicodeIdentifierStart 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
IsUnicodeIdentifierStart(Char) |
判斷指定的字元是否可做為 Unicode 識別符中的第一個字元。 |
IsUnicodeIdentifierStart(Int32) |
判斷指定的字元 (Unicode 字碼點) 是否可做為 Unicode 識別符中的第一個字元。 |
IsUnicodeIdentifierStart(Char)
判斷指定的字元是否可做為 Unicode 識別符中的第一個字元。
[Android.Runtime.Register("isUnicodeIdentifierStart", "(C)Z", "")]
public static bool IsUnicodeIdentifierStart (char ch);
[<Android.Runtime.Register("isUnicodeIdentifierStart", "(C)Z", "")>]
static member IsUnicodeIdentifierStart : char -> bool
參數
- ch
- Char
要測試的字元。
傳回
true
如果字元可能啟動 Unicode 識別符,則為 ; false
否則。
- 屬性
備註
判斷指定的字元是否可做為 Unicode 識別符中的第一個字元。
只有在下列其中一個條件為 true 時,字元才能啟動 Unicode 識別碼: <ul><li>#isLetter(char) isLetter(ch)
傳 true
<回 li>#getType(char) getType(ch)
傳 LETTER_NUMBER
回 。 <李> 是個 Other_ID_Start
http://www.unicode.org/reports/tr44/#Other_ID_Start 人物。 </Ul>
此方法符合 UAX31-R1:Unicode 標準的預設標識符 需求,且具有下列 UAX31 配置檔:
Start := ID_Start + 'VERTICAL TILDE' (U+2E2F)
'VERTICAL TILDE'
會新增至 以 Start
取得回溯相容性。
<b>注意:</b> 此方法無法處理增補字元。 若要支援所有 Unicode 字元,包括增補字元,請使用 #isUnicodeIdentifierStart(int)
方法。
已在1.1中新增。
的 java.lang.Character.isUnicodeIdentifierStart(char)
Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
IsUnicodeIdentifierStart(Int32)
判斷指定的字元 (Unicode 字碼點) 是否可做為 Unicode 識別符中的第一個字元。
[Android.Runtime.Register("isUnicodeIdentifierStart", "(I)Z", "")]
public static bool IsUnicodeIdentifierStart (int codePoint);
[<Android.Runtime.Register("isUnicodeIdentifierStart", "(I)Z", "")>]
static member IsUnicodeIdentifierStart : int -> bool
參數
- codePoint
- Int32
要測試的字元 (Unicode 字碼點)。
傳回
true
如果字元可能啟動 Unicode 識別符,則為 ; false
否則。
- 屬性
備註
判斷指定的字元 (Unicode 字碼點) 是否可做為 Unicode 識別符中的第一個字元。
只有在下列其中一個條件為 true 時,字元才能啟動 Unicode 識別碼: <ul><li>#isLetter(int) isLetter(codePoint)
傳 true
<回 li>#getType(int) getType(codePoint)
傳 LETTER_NUMBER
回 。 <李> 是個 Other_ID_Start
http://www.unicode.org/reports/tr44/#Other_ID_Start 人物。 </Ul>
此方法符合 UAX31-R1:Unicode 標準的預設標識符 需求,且具有下列 UAX31 配置檔:
Start := ID_Start + 'VERTICAL TILDE' (U+2E2F)
'VERTICAL TILDE'
會新增至 以 Start
取得回溯相容性。
已在1.5中新增。
的 java.lang.Character.isUnicodeIdentifierStart(int)
Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。