strs_casefold | R Documentation |
strs_casefold
is used to perform case folding on each element of a
character vector. This function is particularly useful for case-insensitive
string matching and is similar to Python's str.casefold()
method.
strs_casefold(string)
string |
A character vector where each element is a string to be case-folded. |
A character vector of the same length as string
, where each element
has been case-folded.
Python str.casefold() documentation
strs_casefold("HELLO World")
strs_casefold("Äpfel")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.