Strings - R (String Literals) Flashcards
56) Strings are used for storing text.
Strings
57) A string is surrounded by either single quotation marks, or double quotation marks: “hello” = ‘hello’.
Strings
58) Assigning - A string to a variable is done with the variable followed by the <- operator and the string.
Strings
59) Multiline Strings - You can assign a multiline string to a variable like this.
Strings
60) Multiline Strings - However, note that R will add a “\n” at the end of each line break. This is called an escape character, and the n character indicates a new line.
Strings \n
61) Multiline Strings - If you want the line breaks to be inserted at the same position as in the code, use the cat() function.
Strings cat()
62) String Length - To find the number of characters in a string, use the nchar() function.
Strings nchar()
63) Check a String - Use the grepl() function to check if a character or a sequence of characters are present in a string.
Strings grepl()
64) Combine Two Strings - Use the paste() function to merge/concatenate two strings.
Strings paste()