fbizzell
Programmer
- Jul 3, 2000
- 217
I saw this post thread288-87443 but I did not understand whether the listtoarray function would take lines from a text file and bring them into an array?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Notes: Examples of usage:
aRes := ListToArray("AB, BC,CD ") // Result: {"AB","BC","CD"}
aRes := ListToArray("A, B, C ",,"N") // Result: {"A"," B"," C "}
aRes := ListToArray("A; B; C",";") // Result: {"A","B","C"}
aRes := ListToArray(" ") // Result: {}
aRes := ListToArray(" ","D") // Result: {""}