#include <iostream>
#include <string>
using std::cout;
using std::endl;
using std::string;
int main()
{
string s = "c c++ java php";
std::size_t i = s.find_first_not_of("abcdefghijklmnopqrstuvwxyz ");
if (i != string::npos)
cout << "The first not match character is: " << s[i] << " at position: " << i << endl;
return 0;
}
/*
run:
The first not match character is: + at position: 3
*/