Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Extracting strings from a text
Message
From
01/10/2002 11:44:23
Todd Cottengim
Alpine Land Information Services
Redding, California, United States
 
 
To
30/09/2002 16:10:58
Cetin Basoz
Engineerica Inc.
Izmir, Turkey
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00706072
Message ID:
00706404
Views:
12
>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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform