Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
my $input = <>; #get the string
if ($input =~ /^\d+$/) #checks if the variable consists of
#numbers in its intirety
{ do something numeric with it }
else
{ treat it like a string }
$input = '12345-1234';
if ($input =~ /^([0-9]{5,5})\-[0-9]{4,4}$/) {
$input = $1;
}