|  | Home | Libraries | People | FAQ | More | 
Find the first occurrence of a character within the string.
std::size_t find( char ch, std::size_t pos = 0) const;
            Returns the index corrosponding to the first occurrence of ch within {begin() + pos, end()) if it exists, and npos otherwise.
          
Linear.
            The first occurrence of ch
            within the string starting at the index pos,
            or npos
            if none exists.
          
| Name | Description | 
|---|---|
| 
                       | The character to search for. | 
| 
                       | 
                      The index to start searching at. The default argument for this
                      parameter is  |