Strings
- Single quoted and double quoted strings
- Long lines
- Multiline strings
- Triple quoted strings (multiline)
- Triple quoted comments - documentation
- String length (len)
- String repetition and concatenation
- A character in a string
- String slice (instead of substr)
- Change a string
- How to change a string
- String copy
- String functions and methods (len, upper, lower)
- index in string
- index in string with range
- Find all in the string
- rindex in string with range
- find in string
- in string
- index if in string
- Encodings: ASCII, Windows-1255, Unicode
- raw strings
- ord
- chr - number to character
- Exercise: one string in another string
- Exercise: Character to Unicode-8 - CLI
- Exercise: from Unicode to character - CLI
- Exercise: ROT13
- Solution: one string in another string
- Solution: compare strings
- Solution: to Unicode CLI
- Solution: from Unicode CLI
- Solution: Show characters based on Unicode code-points
- Solution: ROT13