programming-examples/perl/SystemFunction/use English.pl
2019-11-15 12:59:38 +01:00

5 lines
95 B
Perl

use English;
$text = 'This is the time.';
$text =~ /time/;
print "Matched: \"$MATCH\".\n";