我想找到一个以 . 开头http://
和结尾的字符串.com
。但是http://
and.com
它不需要打印。
$str = "http://example.com";
$str =~ /http:\/\/example.com/;$result = "$&\n";
print $result;
基本上与使用 python 完成的相同。
#!/usr/bin/python
import re
str = 'http://example.com'
search = re.search(r'http://(\w+).com', str)
if search:
print search.group(1)
它只会显示“示例”。如何在 Perl 中做到这一点?