InterviewSolution
Saved Bookmarks
| 1. |
Can You Write Down A General Regular Expression For Extracting Ip Address From Logs? |
|
Answer» There are multiple WAYS we can extract IP ADDRESS from logs.Below are few examples. REGULAR Expression for extracting ip address: rex field=_raw “(?<ip_address>d+.d+.d+.d+)” There are multiple ways we can extract ip address from logs.Below are few examples. Regular Expression for extracting ip address: rex field=_raw “(?<ip_address>d+.d+.d+.d+)” |
|