n_of_u_chars {Unicode}R Documentation

Unicode Character Counts

Description

Compute the number of Unicode characters (code points) in sequences or ranges of Unicode characters.

Usage

n_of_u_chars(x)

Arguments

x

a vector of Unicode characters, character ranges, or character sequences.

Value

An integer vector with the numbers of Unicode characters specified by the elements of x.

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:
vapply(n, sum, 0)

[Package Unicode version 15.1.0-1 Index]