ansi_nchar | R Documentation |
This is a color-aware counterpart of utf8_nchar()
. By default it
counts Unicode grapheme clusters, instead of code points.
ansi_nchar(x, type = c("chars", "bytes", "width", "graphemes", "codepoints"))
x |
Character vector, potentially ANSI styled, or a vector to be coerced to character. If it converted to UTF-8. |
type |
Whether to count graphemes (characters), code points, bytes, or calculate the display width of the string. |
Numeric vector, the length of the strings in the character vector.
Other ANSI string operations:
ansi_align()
,
ansi_columns()
,
ansi_strsplit()
,
ansi_strtrim()
,
ansi_strwrap()
,
ansi_substring()
,
ansi_substr()
,
ansi_toupper()
,
ansi_trimws()
str <- paste(
col_red("red"),
"default",
col_green("green")
)
cat(str, "\n")
nchar(str)
ansi_nchar(str)
nchar(ansi_strip(str))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.