当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Swift Unicode.Scalar.Properties numericType用法及代码示例


实例属性

numericType

标量的数值类型。

声明

var numericType: Unicode.NumericType? { get }

详述

对于表示数字的标量,numericType 是标量的数字类型。对于所有其他标量,此属性为 nil


let scalars: [Unicode.Scalar] = ["4", "④", "⅕", "X"]
for scalar in scalars {
    print(scalar, "-->", scalar.properties.numericType)
}
// 4 --> Optional(Swift.Unicode.NumericType.decimal)
// ④ --> Optional(Swift.Unicode.NumericType.digit)
// ⅕ --> Optional(Swift.Unicode.NumericType.numeric)
// X --> nil

此属性对应于 Unicode Standard 中的 “Numeric_Type” 属性。

可用版本

iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+

相关用法


注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Unicode.Scalar.Properties numericType。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。