in reply to Re: Finding One String in Another
in thread Finding One String in Another

I think not!
$ perl -e ' $a="aa"; $b="a"; @m = $a=~ /([^$b])/i; print "@m\n"' $
But you can't turn one a into two.

Abigail