We all know that “regex is the power”! 🙂 So, below some common regular expressions:
Anything (Lazy): .*?
Anything (Greedy): .*
Alphanumeric: [a-zA-Z0-9]
Alphanumeric (including _): \w
White Space: \s
Tab: \t
Email Address: [\w\.-]+@[a-zA-Z\d\.-]+
IP Address: \d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}
Port Number: \d{1,5}
MAC Address: ([0-9a-fA-F]{2}\:){5}[0-9a-fA-F]{2}
Protocol: (tcp|udp|icmp)
Device Time: \w{3}\s\d{2}\s\d{2}:\d{2}:\d{2}