n_of_u_chars: Unicode Character Counts

View source: R/basics.R

n_of_u_charsR 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)

Unicode documentation built on Sept. 30, 2022, 9:06 a.m.