Alex Folland Wrote: > I wrote this little program to test for regular expression matches. I > compiled it with in Windows with DMD 2.051 through Visual Studio 2010 > with Visual D. It crashes if regexbuf is just the single character, > "*". Why? Shouldn't it match the entire string?
While it would be best to give your example data. The regular expression for matching all data is ".*" * represents a repeating something of zero or more. . represents anything So "*" just makes no sense.