Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Identifying arrays
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00436254
Message ID:
00436739
Vues:
29
>>>try TYPE("variable[1]").
>>>This will return U unless vaiable is an array.
>>
>>Actually, it's a little more complicated that than. Note that TYPE('OBJECT.NAME[1]') returns 'C', not 'U'; that's true for all native properties of an object. The best way I've found is to test for element 0 as well, because while an array can't have an element 0, TYPE('OBJECT.NAME[0]') still returns 'C'. So, the following routine will return .T. if the specified property for the specified object is an array:
lparameters toObject, tcProperty
>>return type('toObject.' + tcProperty + '[0]') = 'U' and ;
>>  type('toObject.' + tcProperty + '[1]') <> 'U'
Doug
>
>Hi Doug,
>
>You might want to add this tip to FAQ section.

Nick,

Do you think it's better to create one FAQ for all IsArray or IsObjectPropertyArray functions? In this case we will see all necessary information in one place and it would be simpler to compare different methods for different purposes...

Also Trey suggested another approach, which might be worth considering...
If it's not broken, fix it until it is.


My Blog
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform