iswdigit - Checks for a digit (0 through 9).
iswdigit("…");
This function is used to determine if the argument is a digit, that is an arabic number contained between 0 and 9. The argument can be a single character or a string. In the latter case, each character has to be a digit for the function to be true.
Iswdigit operates on wide characters while isdigit operates on single byte characters. If your locale is multibyte, iswdigit would be the prefered solution.
if iswdigit(a) then "ok"; else "nok"; endif
{{ include("includes/strings.sn") }}
Written by Pierre Laplante and Caroline Laplante, <laplante@sednove.com>
1.0 2014-09-09 21:24:14 laplante@sednove.com
Edit© 2024 extenso Inc. All rights reserved.