Solved
Forum Discussion
rraghvani
Champion Level 3
2 years agoHere's a small example,
Sub main()
myString = "TestComplete is a functional automated testing platform developed by SmartBear Software." & vbCrLf _
& "TestComplete gives testers the ability to create automated tests for Microsoft Windows, Web, Android, and iOS applications."
myWord = Split(myString, vbCrLf)
for each word in myWord
Log.Message(word)
next
End SubThere's plenty of references on the internet, if you do a search