Answers for "how to grab numbers from string in cpp"

C++
0

how to grab numbers from string in cpp

// An easier way to extract each character would be:

string s = "abcde"; 
 
for (int i=0; i<s.size(); i++) { 
    cout << s[i];  
} 
// To test if a particular character is an integer, you would do this:

//test if s[i] is an int from 0-9 
if (s[i] <= '9' && s[i] >= '0') { 
    return true; 
}
Posted by: Guest on October-17-2021

Code answers related to "how to grab numbers from string in cpp"

Browse Popular Code Answers by Language