Perl 正則式應用

ccwwff發表於2017-10-09
#! /usr/bin/perl

$_ = "yabba dabba doo";
if (/abba\ / ) {
    print "It matched $_!\n";
}

相關文章