R
Raj Sathgunam
Hi ,
I have to match either one of the below output from a log file.
Match "No Activity" OR XYZ:10 ABC:30 MNO:10 PQR:5 .
I could get pattern for second one. How can i combine the patterns to
match either one of them. Id this valid
/No Activity/||/.+\sXYZ
\d+)+\s+ABC
\d+)+\s+MNO
\d+)+\s+PQR
\d+)/
Thanks
I have to match either one of the below output from a log file.
Match "No Activity" OR XYZ:10 ABC:30 MNO:10 PQR:5 .
I could get pattern for second one. How can i combine the patterns to
match either one of them. Id this valid
/No Activity/||/.+\sXYZ
Thanks