Is this a std.regex bug?

Andrea Fontana nospam at example.com
Tue Aug 7 05:06:14 PDT 2012


dmd 2.060 64bit ubuntu:

// Doesn't work:
auto r = 
ctRegex!(r"/api/places/(id|related|search|count)\.(json|xml)", 
"g");
		
// Works:
auto r = 
regex(r"/api/places/(id|related|search|count)\.(json|xml)", "g");
		



More information about the Digitalmars-d-learn mailing list