我有一个 NX Knowledge Fusion Check-Mate 程序来检查是否有任何包含任何类型数字的手动尺寸。
但是维度的数据类型始终是字符串列表(我只对列表的第一个位置感兴趣)。
如果列表的第一个位置包含的字符串可以转换为数字类型,即如果字符串是“200”,程序必须返回true并将维度标签附加到列表中,但如果是“22c”,程序必须返回假。
我尝试使用函数 MakeNumber(string),但该函数仅在字符串可以转换为 Number 时才有效。如果字符串不是数字,程序就会崩溃。
非常感谢!
我的检查器函数的 dfa 代码是:
检查功能
(任何未缓存的)do_check:@{ $dim_manual << mqc_askManualDimensions();
$dim_log <<loop
{
for $each in $dim_manual;
for $is_sleep is mqc_isSleepObject( $each );
for $is_condemned is mqc_isCondemnedObject( $each );
#I print the value i want to check
do ug_printvalue($each);
for $text is mqc_askDimensionManualText( $each );
do ug_printvalue(nth(0,$text));
#I check the type of the dimension content --> String
#If nth(0,$text) is Number type, typecheck returns true
#but always return false because nth(0,$text) is String type!
for $is_number is typecheck(nth(0,$text), Number);
do ug_printvalue($is_number);
do ug_printvalue(TypeName(nth(0,$text)));
#I try to convert the String in a Number. If the String can not be
#converted the program crashes!!
for $n is MakeNumber(nth(0,$text));
do ug_printvalue($n);
#I want to append in the error log only the manual dimensions that
#contains ONLY a number.
if (!$is_sleep & !$is_condemned & $is_number)
append {$each};
};
if !empty?( $dim_log ) Then
@{
$log_msg << @{If (log_msg:="") Then "" Else log_msg:+"~n";} +
mqc_sprintf("Found %s dimension(s) with manual text.", Stringvalue(Length($dim_log)));
ug_mqc_log( nth( log_type:, log_type_option: ), $dim_log, $log_msg );
}
Else donothing;
};