Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

find character in string c++

auto char_to_find = 'a'
if (str.find(char_to_find) != std::string::npos) {
    // character found
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #find #character #string
ADD COMMENT
Topic
Name
9+4 =