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.
if (/\D/) {
print "there is something that is not a digit";
}
if (/^\d+$/) {
print "there are only digits in this thing so it's numeric.";
}
if (/\d/ && /^-?\d*\.?\d*$/) {
print "an integer, negative number, or a decimal but not some other type of numeric value";
}