标签: php regex email
我的程序发送电子邮件时出错。现在我有了导出电子邮件的文件。 搜索正则表达式,什么只能让我收到Return-Path中的电子邮件。
Some content Return-Path: <email@domain.com> Some content
答案 0 :(得分:1)
这个正则表达式应该做你想要的:
(?=Return-Path:)([^\n]*)<([^>]*)>
演示:https://regex101.com/r/oL9kE8/2