Turn String Into Array Vba

[Solved] Turn String Into Array Vba | Vb - Code Explorer | yomemimo.com
Question : turn string into array vba

Answered by : strange-sloth-5wsfef4uwk1u

Dim buff() As String
ReDim buff(Len(my_string) - 1)
For i = 1 To Len(my_string) buff(i - 1) = Mid$(my_string, i, 1)
Next

Source : https://stackoverflow.com/questions/13195583/split-string-into-array-of-characters | Last Update : Thu, 15 Jul 21

Answers related to turn string into array vba

Code Explorer Popular Question For Vb