在 Cool 中§
有关 例程 ord,请参阅主要文档 in context
sub ord(Str(Cool))method ord()
将调用者(或在子表单中,其参数)强制转换为 Str
,并返回第一个码点的 Unicode 码点 编号。
say 'a'.ord; # OUTPUT: «97»
逆运算为 chr。
助记符:返回序数
在 Str 中§
有关 例程 ord,请参阅主要文档 in context
multi ord(Str --> Int)multi method ord(Str: --> Int)
返回字符串中第一个音素的基字符的码点编号。
示例
ord("A"); # 65"«".ord; # 171