What is the ouput of the following code snippet: $mystring = "[2004/04/13] The date of this article."; if($mystring =~ m/(\d)/) { print "The digit is $1"; }
The digit is 3
The digit is 2
The digit is 1
None of the above