- or download this
if ($sentence =~ /foo/gis && $sentence =~ /bar/gis)
{
# do something further with $sentence
}
- or download this
if ($sentence =~ /foo/gis)
{
...
# now do something with the sentence
}
}
- or download this
if ($sentence =~ /foo/gis)
{
...
# *now* do something with the sentence...
}
}