http://
で始まり、で終わる文字列を見つけたい.com
。ただし、印刷する必要はありませんhttp://
。.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でそれを行う方法は?