Gurusamy Sarathy writes: > The following program prints "ok" with 5.005, > but not with 5.6. > > print "ok\n" if $foo =~ /(?i)/; Compiling REx `(?i)' size 2 first at 1 1: EXACTF <>(2) 2: END(0) stclass `EXACTF <>' minlen 0 Matching REx `(?i)' against `' Freeing REx: `(?i)' 2 bugs: a) We got a node "match an empty string"; b) No reason for failure is reported. IlyaThread Previous