Returns true if a string contains a substring:
if s.contains("apple") {}
Iterate though each line in a string:
for line in s.lines() {}
Creates a new string containing the lowercase letters of the old string:
s.to_lowercase();
Use b""
to create a binary string.