find_last_not_of
Method of string.
find_last_not_of(const string f, integer pos) -> integer
Finds the last occurrence of any character not in the specified substring starting from the given position.
Parameters
- f: The substring containing characters to exclude.
- pos: The position to start the search from.