Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Extracting strings from a text
Message
De
01/10/2002 11:44:23
Todd Cottengim
Alpine Land Information Services
Redding, Californie, États-Unis
 
 
À
30/09/2002 16:10:58
Cetin Basoz
Engineerica Inc.
Izmir, Turquie
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00706072
Message ID:
00706404
Vues:
13
>Off the top of my head :
>oWord=createobject('word.application')
>with oWord
> .Documents.Open(lcMyDocument)
> .ActiveDocument.Content.Select
> .Selection.Copy
> .quit()
>endwith
>lnAdresses = alines(arrAdresses, _cliptext,',')
>Cetin

In VFP 7, ALINES() can have 4 parameters (2 required, 2 optional),
ie: ALINES(Array, String [, Trim [, Delimiter]]). Therefore, the above example need to move the third parameter to the fourth location and insert a logical into the third location.

In VFP 6, ALINES() only has three parameters (there is no optional delimiter), ie: ALINES(Array, String [, Trim ]). Therefore, to make the example work, the _cliptext would have to be replaced with CHRTRAN(_cliptext, ",", CHR(13)) and the third parameter would be changed to a logical or dropped.

Just my .02.

TC
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform