Changeset 13635 for trunk/sources
- Timestamp:
- 02/29/16 15:24:58 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/CommandLineArgumentHandling/CommandLineArgumentHandling.cs
r13629 r13635 43 43 44 44 private static ICommandLineArgument ParseArgument(string entry) { 45 var regex = new Regex(@"^/[A-Za-z]+(: [\w]+)?$");45 var regex = new Regex(@"^/[A-Za-z]+(:\w[\w\s]*)?$"); 46 46 bool isFile = File.Exists(entry); 47 47 if (!regex.IsMatch(entry) && !isFile) return null;
Note: See TracChangeset
for help on using the changeset viewer.