Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Separate the strings
Message
From
25/03/2016 11:36:23
 
 
To
25/03/2016 09:07:59
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
01633712
Message ID:
01633745
Views:
69
Hi Tamar
*speed is important when the string is big and yes in this case it more slow.
But here its a small string and there is no diffrence.
*this is another solution:
local m.accounts,m.x
m.accounts='100,1100,200,250,3000'
m.accounts=strtran(m.accounts,',',chr(13))

m.x=""
for i=1 to memlines(m.accounts)
m.x=m.x+"Accounts["+trans(i)+"]="+mline(m.accounts,i)+chr(13)
endfor
_clipboard=m.x
messagebox(m.x,"string in clipboard")
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform