fmt_parser.readcc [method]

fmt_parser.readcc( string class, int num = 2^31-1 (0x7fffffff) )

reads and returns at most num bytes that match the character class class

stream = fmt_string_parser( "what is this" );
stream.readcc( "a-z" ); // returns "what"
stream.readcc( "^a-z" ); // returns " "