|
From: Kevin M. <Kev...@ir...> - 2002-08-07 17:13:43
|
In trying to pass a db connection string as a property into NAnt I ran into a problem: With an input parameter such as -D:foobar="blah=true;bleck=false;Provider=SpamSoft" Then name matches to : "foobar=blah=true;bleck=false;Provider" value to : "SpamSoft" NAnt.cs line 64: Match match = Regex.Match(arg, @"-D:(\w+.*)=(\w*.*)"); Any idea on how to fix this. I am a regexp neophyte. Kevin Miller |