Hi All,
Can someone help me to replace space with tab in a string
I dont want to use spaces ,
Thanks
Hi All,
Can someone help me to replace space with tab in a string
I dont want to use spaces ,
Thanks
the ASCII value of tab key is 9. so you can use yourStringVar.Replace(" ", Chr(9))
Thankyou, It worked
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.