Instance Property インスタンスプロパティ

isASCII

A Boolean value indicating whether the Unicode scalar is an ASCII character. このユニコードスカラーがあるASCII文字であるかどうかを指し示すブール値。

Declaration 宣言

var isASCII: Bool { get }

Discussion 解説

ASCII characters have a scalar value between 0 and 127, inclusive. For example: ASCII文字は、0と127の間の、それらを含む、スカラー値を持ちます。例えば:


let canyon = "Cañón"
for scalar in canyon.unicodeScalars {
    print(scalar, scalar.isASCII, scalar.value)
}
// Prints "C true 67"
// Prints "a true 97"
// Prints "ñ false 241"
// Prints "ó false 243"
// Prints "n true 110"

See Also 参照

Inspecting a Scalar スカラーを調査する