Insert Tab into String

You can use the Insert function of the string instance, and you can use the vbTab constant.
VB.NET:
Dim text As String = "abc".Insert(1, vbTab)
 
Back
Top