How to search a string for the first character that does not match any of the characters specified in C++

1 Answer

0 votes
#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

*/

 



answered Apr 20, 2018 by avibootz
edited Apr 21, 2018 by avibootz
...