Which of the following will be matched by this code?
my $pattern = '.*'; $str =~ /(\Q$pattern\E)/;
any number of any characters
any number of any characters surrounded by Q and E
literally Q.*E
literally .*
literally \Q.*\E
QuizBucket
© 2017 QuizBucket.org