convenient function to instantiate a AlphaNumericParser
the alnum parser
auto parser = alnum!(immutable(char))(); auto res = parser.parseAll("-Aa1234"); res.success.should == true; res.results[0].should == "-Aa1234"; res = parser.parseAll("a1234"); res.success.should == true;
See Implementation
convenient function to instantiate a AlphaNumericParser