Added the methods to find a char in a string:
find_first_of, find_first_not_of
find_last_of, find_last_not_of.
Added rfind and find for char (equivalent to find_last_of and find_first_of when
a char is used instead of a set of char (string)).