Regular Expressions 101

Sponsors

Community Patterns

Community Library Entry

0

Regular Expression
Created·2019-01-31 09:32
Flavor·PCRE (Legacy)

/
(?:http[s]*\:\/\/)*(?<dstdomain>\w*[\-]*\w*\.[a-zA-Z]*)(?:$|\:.*|\/.*)
/
gm
Open regex in editor

Description

From native squid logs, I retrieve url with http* or not. I use the regex to extract the top domain from the url and store it into a variable

Submitted by anonymous