我正在尝试使用 Notepad++ 和正则表达式从 Windows 事件中删除所有 XML。
我的正则表达式如下:
Event Xml:(.|\n)+?Event>\n
Windows 事件示例如下:
Log Name: System
Source: Service Control Manager
Date: 2016/04/29 11:54:00
Event ID: 7036
Task Category: None
Level: Information
Keywords: Classic
User: N/A
Computer: hostname.domainname
Description:
The Adobe Flash Player Update Service service entered the stopped state.
Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="Service Control Manager" Guid="{555908d1-a6d7-4695-8e1e-26931d2012f4}" EventSourceName="Service Control Manager" />
<EventID Qualifiers="16384">7036</EventID>
<Version>0</Version>
<Level>4</Level>
<Task>0</Task>
<Opcode>0</Opcode>
<Keywords>0x8080000000000000</Keywords>
<TimeCreated SystemTime="2016-04-29T10:54:00.113587400Z" />
<EventRecordID>299771</EventRecordID>
<Correlation />
<Execution ProcessID="696" ThreadID="3904" />
<Channel>System</Channel>
<Computer>hostname.domainname</Computer>
<Security />
</System>
<EventData>
<Data Name="param1">Adobe Flash Player Update Service</Data>
<Data Name="param2">stopped</Data>
<Binary>410064006F006200650046006C0061007300680050006C0061007900650072005500700064006100740065005300760063002F0031000000</Binary>
</EventData>
</Event>
Log Name: System
Source: Service Control Manager
Date: 2016/04/29 11:54:00
Event ID: 7036
Task Category: None
Level: Information
Keywords: Classic
User: N/A
Computer: hostname.domainname
Description:
The Adobe Flash Player Update Service service entered the running state.
Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="Service Control Manager" Guid="{555908d1-a6d7-4695-8e1e-26931d2012f4}" EventSourceName="Service Control Manager" />
<EventID Qualifiers="16384">7036</EventID>
<Version>0</Version>
<Level>4</Level>
<Task>0</Task>
<Opcode>0</Opcode>
<Keywords>0x8080000000000000</Keywords>
<TimeCreated SystemTime="2016-04-29T10:54:00.113587400Z" />
<EventRecordID>299770</EventRecordID>
<Correlation />
<Execution ProcessID="696" ThreadID="3904" />
<Channel>System</Channel>
<Computer>hostname.domainname</Computer>
<Security />
</System>
<EventData>
<Data Name="param1">Adobe Flash Player Update Service</Data>
<Data Name="param2">running</Data>
<Binary>410064006F006200650046006C0061007300680050006C0061007900650072005500700064006100740065005300760063002F0034000000</Binary>
</EventData>
</Event>
上述正则表达式适用于http://www.regexpal.com/:
答案1
删除所有 XML 的正则表达式是什么?
前:
Log Name: System
Source: Service Control Manager
Date: 2016/04/29 11:54:00
Event ID: 7036
Task Category: None
Level: Information
Keywords: Classic
User: N/A
Computer: hostname.domainname
Description:
The Adobe Flash Player Update Service service entered the stopped state.
Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="Service Control Manager" Guid="{555908d1-a6d7-4695-8e1e-26931d2012f4}" EventSourceName="Service Control Manager" />
<EventID Qualifiers="16384">7036</EventID>
<Version>0</Version>
<Level>4</Level>
<Task>0</Task>
<Opcode>0</Opcode>
<Keywords>0x8080000000000000</Keywords>
<TimeCreated SystemTime="2016-04-29T10:54:00.113587400Z" />
<EventRecordID>299771</EventRecordID>
<Correlation />
<Execution ProcessID="696" ThreadID="3904" />
<Channel>System</Channel>
<Computer>hostname.domainname</Computer>
<Security />
</System>
<EventData>
<Data Name="param1">Adobe Flash Player Update Service</Data>
<Data Name="param2">stopped</Data>
<Binary>410064006F006200650046006C0061007300680050006C0061007900650072005500700064006100740065005300760063002F0031000000</Binary>
</EventData>
</Event>
Log Name: System
Source: Service Control Manager
Date: 2016/04/29 11:54:00
Event ID: 7036
Task Category: None
Level: Information
Keywords: Classic
User: N/A
Computer: hostname.domainname
Description:
The Adobe Flash Player Update Service service entered the running state.
Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="Service Control Manager" Guid="{555908d1-a6d7-4695-8e1e-26931d2012f4}" EventSourceName="Service Control Manager" />
<EventID Qualifiers="16384">7036</EventID>
<Version>0</Version>
<Level>4</Level>
<Task>0</Task>
<Opcode>0</Opcode>
<Keywords>0x8080000000000000</Keywords>
<TimeCreated SystemTime="2016-04-29T10:54:00.113587400Z" />
<EventRecordID>299770</EventRecordID>
<Correlation />
<Execution ProcessID="696" ThreadID="3904" />
<Channel>System</Channel>
<Computer>hostname.domainname</Computer>
<Security />
</System>
<EventData>
<Data Name="param1">Adobe Flash Player Update Service</Data>
<Data Name="param2">running</Data>
<Binary>410064006F006200650046006C0061007300680050006C0061007900650072005500700064006100740065005300760063002F0034000000</Binary>
</EventData>
</Event>
后:
Log Name: System
Source: Service Control Manager
Date: 2016/04/29 11:54:00
Event ID: 7036
Task Category: None
Level: Information
Keywords: Classic
User: N/A
Computer: hostname.domainname
Description:
The Adobe Flash Player Update Service service entered the stopped state.
Log Name: System
Source: Service Control Manager
Date: 2016/04/29 11:54:00
Event ID: 7036
Task Category: None
Level: Information
Keywords: Classic
User: N/A
Computer: hostname.domainname
Description:
The Adobe Flash Player Update Service service entered the running state.
进一步阅读
答案2
答案3
您必须在 notepad++ 中检查“匹配新行”选项,否则正则表达式只能逐行考虑。