in reply to Regex to check for very large negative numbers

I recommend a regex that tests for a valid pattern (as defined by your device documentation) anchored at the start of the string. (e.g. /^-?\d{5,}\.\d*/)

Bill