powered by
This is a color-aware counterpart of utf8_nchar(). By default it counts Unicode grapheme clusters, instead of code points.
utf8_nchar()
ansi_nchar(x, type = c("chars", "bytes", "width", "graphemes", "codepoints"))
Numeric vector, the length of the strings in the character vector.
Character vector, potentially ANSI styled, or a vector to be coerced to character. If it converted to UTF-8.
Whether to count graphemes (characters), code points, bytes, or calculate the display width of the string.
Other ANSI string operations: ansi_align(), ansi_columns(), ansi_strsplit(), ansi_strtrim(), ansi_strwrap(), ansi_substr(), ansi_substring(), ansi_toupper(), ansi_trimws()
ansi_align()
ansi_columns()
ansi_strsplit()
ansi_strtrim()
ansi_strwrap()
ansi_substr()
ansi_substring()
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))
Run the code above in your browser using DataLab