I'm writing an algorithm and I need to check if a string contains only one digit (no more than one). Currently I have:
if(current_Operation.matches("\\d")){
...
}
Is there a better way to go about doing this? Thanks.
You can use:
^\\D*\\d\\D*$
# match beginning of the line
# non digits - \D*
# one digit - \d
# non digits - \D*
# end of the line $
See a demo on regex101.com (added newlines for clarity).
Use the regular expression
/^\d$/
This will ensure the entire string contains a single digit. The ^ matches the beginning of the line, and the $ matches the end of the line.
^\D*\d\D*$.if(str.length == 1 && isDigit(str[0]).isDigitfromstd.asciiis good enough for a basic check.