BOM Table Relations: Convert String to Number (ston?)?
Previous erroneous Subject Heading: 2D Detailing / MBD: New Text and Symbol Fonts
--------------------------------------------------------------
Does anyone know of a good way to convert a string to a number so number operations can be performed?
For example, a simplified version of what I want to do is:
pn_end2=extract(asm_mbr_name,5,2)
/******e.g. pn_end2="12" (they will *always* be numbers but could also be something like 02)
pn_compare="07"
/*Convert to number using my made up string to number function ston (instead of ntos)
pn_end2_num=ston(pn_end2)
pn_compare_num=ston(pn_compare)
IF pn_compare_num<pn_end2_num
<do something>
ELSE
<do something else>
ENDIF
-------------------------------------------------
Any ideas on how to do this?

