i have lists of phone numbers each phone number must have 10 numbers, i want simple code to add "," after every phone number to i can send it in SMS application.
i have it in this way :
0123456789
0123456789
0123456789
0123456789
0123456789
0123456789
i want the output look like this :
0123456789,0123456789,0123456789,0123456789,0123456789,0123456789
orig = "012345678901234567890123456789"
Dim res = Enumerable.Range(0,orig.Length\10).[Select](Function(i) orig.Substring(i*8,8))