0

我正在尝试使用 sitescope 监视日志文件。该文件来自 ReportServer,格式为

ReportServerService__02_18_2015_00_00_01.log

我可以获得月、日和年,但是当我尝试注入正则表达式以匹配后续文本时,它无法读取文件。如果我对后续文本进行硬编码,它就可以工作。

下面是我使用的日志文件路径文本。但它无法读取文件。

 s/\\server\LogFiles\ReportServerService__$0month$_$0day$_$year$_([0-
 9][0-9])_([0-9][0-9])_([0-9][0-9]).log/
4

1 回答 1

0

试试这个正则表达式:

s/\\\\server\\LogFiles\\ReportServerService__$0month$_$0day$_$year$_(\d{2})_(\d{2})_(\d{2})\.log/
于 2015-02-18T08:40:38.417 回答