in reply to Checking for occurrence in comma separated string

You change it as shown below.

$thestring = "13,130,213"; $thecheck = "13"; if ($thestring =~ /$thecheck/) { print "$thecheck is in $thestring"; }

Prasad