http://www.perlmonks.org?node_id=989169


in reply to Re^3: Regex in json: escaping forward slash
in thread Regex in json: escaping forward slash

Thanks for your reply. I made a poor assumption. I was under the impression that:
my $regex = ".*/home/members/index.htm.*"; if (/$regex/)
Was the same as
if (/.*/home/members/index.htm.*/)
Which would fail. I was wrong!