Strings - R (String Literals) Flashcards

1
Q

56) Strings are used for storing text.

A

Strings

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

57) A string is surrounded by either single quotation marks, or double quotation marks: “hello” = ‘hello’.

A

Strings

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

58) Assigning - A string to a variable is done with the variable followed by the <- operator and the string.

A

Strings

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

59) Multiline Strings - You can assign a multiline string to a variable like this.

A

Strings

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

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.

A

Strings \n

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

61) Multiline Strings - If you want the line breaks to be inserted at the same position as in the code, use the cat() function.

A

Strings cat()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

62) String Length - To find the number of characters in a string, use the nchar() function.

A

Strings nchar()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

63) Check a String - Use the grepl() function to check if a character or a sequence of characters are present in a string.

A

Strings grepl()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

64) Combine Two Strings - Use the paste() function to merge/concatenate two strings.

A

Strings paste()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly