你能完成这个 Perl/bash 脚本的 url 和 url 列表,并告诉我如何在同一个脚本中编写多个正则表达式吗?
wget -Otest.html https://www.cormes.de/impressum
perl -nE 'if (/\bmailto:([\w\.]+\@[\w\.]+)/) { say $1
}'test.html
perl -nE 'if (/Straße: \[A-Za-z] [0-9]/) {say
$1}'test.html
perl -nE 'if ( /PLZ und Ort: \ [0-9] {5} - [A-Za-z])
/{say $1}'test.html
perl -nE 'if (/FirstName and LastName: \[A-Za-z] [A-Za-
z])/{say $1}'test.html
perl -nE'if( 's|\([0-9]{2}\)-[0-9]{3}-[0-9]{3}-[0-9]
{2}-[0-9]{2}|##-###-###-##-##|g')
要提取电子邮件,此正则表达式效果很好。其他正则表达式由 regex 101 验证。我有获取 CEO 名字和姓氏的链接,但不知道哪个工具允许您对其进行解码以在脚本中使用它。 https://idowapro.de/impressum/#:~:text=Gesch%C3%A4ftsf%C3%BChrer%3A%20Lutz%20Teubert 如何编写此脚本来累积单个 url 和 url 列表的多个正则表达式?