Hello, can someone explain me, why this short regex don't give the result I expect:
perl -e '$text = "(7) 32"; printf "[%s][%s]\n", ( $text =~ /\((\d+) \)\s+(\d+)/ )' I supposed that the output is "[7][32]", but the output is "[][]". I don't know why... Regards... -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/