Perl - how to access dot within regex?
- by goe
Hi,
I use this codition to check if the value is alphanumeric values:
$value =~ /^[a-zA-Z0-9]+$/
How can I modify this regex to account for a possible dot "." in the value without accepting any other special characters?