Level 44 Level 46
Level 45

[No Typing] Strings


12 words 0 ignored

Ready to learn       Ready to review

Ignore words

Check the boxes below to ignore/unignore words, then click save at the bottom. Ignored words will never appear in any learning session.

All None

Ignore?
string.length;
length of a String
\ backlash escape character 'It\'s alright';
turns special characters into string characters
this is \John\", he will help us"
double quote
this is a backslash \\
backslash
this is a \n new line
new line
\r beginning of a line
carriage return (beginning of a line)
\t
tab
this is a backspac\b
backspace: delete one character and shift back by one position
page1 \f page 2
form feed: page breaking control character, eject the current page and continue at the top of another
80 characters more characters;
Breaking Long Code Lines
this is a broken \ string with a backslash;
Breaking text string
Breaking text string (safer method)
this is + "a broken string";