Message 1 of 9
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello im looking for this vba code in AutoLisp. Ive looked at some examples of this but just cant wrap my head around it. Thanks.
Dim string1 As String Dim list1 As String() string1 = "hello world number 1" list1 = string1.Split(" ") MessageBox.Show(list1(0)) 'returns: "hello"
Solved! Go to Solution.