is it possible to insert a character say " " (space) after every 2 characters in a string?
using this doesnt seem to work :
Dim s As String
s = "010001000100"
s = Mid(s, 1, 2) & " " & Mid(s, 4)
MsgBox s
it adds space only after first two chars