Strip control codes and extended characters from a string: Difference between revisions

Line 78:
 
=={{header|C++}}==
<lang C++Cpp>#include <string>
#include <iostream>
#include <algorithm>
Line 89:
struct MyRandomizer {
char operator( )( ) {
return static_cast<char>( rand( ) % 257256 ) ;
}
} ;
Anonymous user