How would I do something in c++ similar to the following code:
c++
//Lang: Java string.replaceAll(\" \", \" \");
This code-snippe
how about isspace(lhs) && isspace(rhs) to handle all types of whitespace
isspace(lhs) && isspace(rhs)