isdigitlike
isdigitlike is a term used in text processing to describe a predicate that tests whether a string consists solely of digit characters drawn from any script.
Definition: In its conventional form, isdigitlike returns true if every character in the input has the Unicode
Examples: isdigitlike("123") -> true; isdigitlike("123") -> true; isdigitlike("123a") -> false; isdigitlike("") -> false.
Relation to other terms: It is related to isdigit and isnumeric. isdigitlike focuses on decimal digit characters;
Implementation notes: In most languages, a Unicode-aware approach iterates over code points and checks the Nd
Limitations: isdigitlike excludes numbers represented by numerals that are not digits, such as fractions or roman