我有這樣一個配置文件:正則表達式如何讓文件路徑
#time(Second or HH:ss:mm) exepath
5 c:\windows\notepad
18:38:00 c:\windows\notepad.exe
18:38:00 "c:\path\path path2\program.exe" command
我想通過正則表達式來獲取時間,文件路徑和命令。我想:
string line = "18:38:00 c:\windows\notepad.exe.....";//from config file
string reg = @"(\S*)("")?(.*)("")?";
Regex regex = new Regex(reg, RegexOptions.IgnoreCase);
Match m = regex.Match(str);
if(m.Success)
{
Console.Write(" {0} ", m.Groups[1]);
Console.Write(" {0} ", m.Groups[2]);
Console.Write("/n");
}
但就是不行
@AvinashRaj我希望得到的時間,文件路徑和命令 – zt9788 2014-11-01 11:13:29