n_of_u_chars(Unicode)
n_of_u_chars()所属R语言包:Unicode
Unicode Character Counts
Unicode字符数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Compute the number of Unicode characters (code points) in sequences or ranges of Unicode characters.
序列或Unicode字符的范围,计算的Unicode字符(代码点)。
用法----------Usage----------
n_of_u_chars(x)
参数----------Arguments----------
参数:x
a vector of Unicode characters, character ranges, or character sequences.
一个向量的Unicode字符,字符范围,或字符序列。
值----------Value----------
An integer vector with the numbers of Unicode characters specified by the elements of x.
整数向量的元素x指定的Unicode字符与数字。
实例----------Examples----------
## How many code points are assigned to the Latin and Cyrillic scripts?[#多少代码点被分配到拉丁和西里尔脚本?]
x <- u_scripts(c("Latn", "Cyrl"))
## Numbers in the respective ranges:[#在各自的范围内的数字:]
n <- lapply(x, n_of_u_chars)
n
## Total number:[#总数:]
sapply(n, sum)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|