Documentation Comments
Use this form to comment on this topic. You can also provide any general observations about the Online Documentation, or request that additional information be added in a future release.
RealityV15.1Online Documentation (MoTW) Revision 7
NUMS Function (DataBasic) (m618703+nums_f.htm)
Determines whether each element in a dynamic array is a numeric value.
NUMS(dynArray)
dynArray A DataBasic expression that evaluates to a dynamic array.
A dynamic array with the same structure as dynArray, but with each numeric value replaced by 1 or 0.
An element is set to 1 (true) if it evaluates to a number or a numeric string (see Numeric Data for the format of a numeric string).
An element is set to 0 (false) if it evaluates to a non-numeric string.
A empty string is considered to be numeric.
ARY = 27:@AM:"42":@AM:"":@AM:@AM:"Status Quo" NEWARY = NUMS(ARY)
Sets NEWARY to "1AM1AM1AM1AM0".