anyMultibyteUTF8Characters: Check If a String Contains Multibyte UTF-8 characters This...

Description Usage Arguments Details Value Author(s) See Also Examples

Description

This function searches through the characters in the given string, if any of the characters in the string are more than one byte then the function returns TRUE otherwise it returns FALSE.

Usage

1
  anyMultibyteUTF8Characters(string, encoding = "UTF-8")

Arguments

string

A character vector of length 1 (a string).

encoding

The input encoding of string, if not specified previously via Encoding or by this argument then a value of "UTF-8" is assumed

Details

The function will assume an input encoding of UTF-8 but will take any specified encoding into account and will convert from the specified encoding to UTF-8 before doing any checks

Value

A boolean value

Author(s)

Cameron Bracken cameron.bracken@gmail.com

See Also

tikz

Examples

1
2
3
4
# TRUE
anyMultibyteUTF8Characters('R is GNU ©, but not ®')
# FALSE
anyMultibyteUTF8Characters('R is GNU copyright but not restricted')

tikzDevice documentation built on May 2, 2019, 4:50 p.m.