在Perl中,正則表達式匹配通常使用=~
操作符來實現。例如,要匹配一個字符串是否包含"hello"的子串,可以使用如下代碼:
my $str = "world, hello!";
if ($str =~ /hello/) {
print "Matched 'hello' in the string.\n";
} else {
print "Not matched.\n";
}
在上面的例子中,$str =~ /hello/
表示對變量$str
進行正則表達式匹配,匹配的模式為hello
。
如果想要獲取正則表達式匹配到的內容,可以使用括號來進行捕獲。例如:
my $str = "My email is test@example.com";
if ($str =~ /(\w+@\w+\.\w+)/) {
print "Matched email address: $1\n";
} else {
print "No email address found.\n";
}
在上面的例子中,(\w+@\w+\.\w+)
表示匹配一個email地址,其中\w+
表示匹配一個或多個字母、數字或下劃線。匹配到的內容會被保存在變量$1
中。