Hi all,
I’m trying to write an expression for a validate rule that confirms that only a portion of a determined string is numeric.
Eg. the string is an externally provided ID that includes a prefix then a series of numbers. I need to validate that the series of numbers is, in fact, a series of numbers.
Example string is something like “ABCD-123456”. All IDs follow this format, though the length of both the prefix and the number string can vary.
The intuitive solution to me was to try @isNumber(@String.whatComesAfterFirst(.ID, ’-’)) but any syntax configuration of this expression that I try is failing
Am I making a glaring mistake in my expression logic? Or is there a better way to achieve this check?