Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

UDF name filter

Status
Not open for further replies.

Bonde78

Mechanical
Joined
Apr 3, 2019
Messages
20
Location
DK
Hello everyone

I am making a KF checker, which should find specific names, such as finding a UDF with the name 9. The code right now looks like this, does anyone know how to do this?

Code:
 $feats << mqc_askFeaturesByType( "SKETCH" );
        $browseable_features << mqc_askBrowseableFeatures( "include_inactive_features", false, "include_features_unable_to_make_current", true );
 
        $not_udf << Loop 
        {
            For $UDF in $feats;
            If ( Find( $UDF, $browseable_features, "key", Identity ) != NoValue ) 
                collect $UDF;
        };

Best regards
Christian
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top