Horje
check uppercase c++ Code Example
c++ check if string contains uppercase
#include <algorithm>

any_of(str.begin(), str.end(), isupper)
check uppercase c++
char character = 'A'; //0100 0001
if((character & 0x20) == 0) {
	//is uppercase
}




Cpp

Related
c++ find element in vector Code Example c++ find element in vector Code Example
string to int in c++ Code Example string to int in c++ Code Example
swap values in array c++ Code Example swap values in array c++ Code Example
roscpp publish int32 Code Example roscpp publish int32 Code Example
height of bst cpp Code Example height of bst cpp Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8