I want split text by count of characters to arLines for example:
Original text:
Splited text by 3 characters:AAAAAAAAAAAAAA
Now I'm using this:AAA
AAA
AAA
AAA
AA
This works good but before spliting I have put "x" every 3 characters in Textbox.arLines = Split(Test1.Text, "x")
For i = 0 To UBound(arLines)
'Misc code
Next i
So maybe there is an way how can I split text by count to arLines not by "x" ?


Reply With Quote
