我正在尝试从以下事件集中提取域,URL和用户名。
例如:域必须为http://damtare.by.ru 网址必须为http://damtare.by.ru/id.txt 名称-emaxwell(电子邮件ID中的名称)
事件
\d+.\d+\s\d+\s+\S+\s+\S+\s+\d+\s+GET\s(?<domain>http:\/\/[^ \/]+)(?<url>(\S+))\s+(?<user>[^@]+)
https://regex101.com/r/52GMc4/5/
我的正则表达式未正确提取URL。非常感谢您的帮助。