Hello,
In the code below, there is a populated array of type string. Because there are some " marks that I am not sure really exist or not, I want to remove them by converting the array into a string. However, it appears that the only option is ToText.
Two questions:
- Whats the diff between string and text?
- Is there a way to do this without having to dimension a new variable?
Thank you,
Tim
Dim tmpToNo() As String
Dim tToNo As String
tToNo = tmpToNo(1) // This gives the TO Number
Dim Num As integer = tToNo.ToInteger
tToNo = num.ToString
12 posts - 5 participants