I need to find the first 5 charachters in a string I tried puting the source string into a String * 5 but it did not work can anyone help???
[email protected]
Printable View
I need to find the first 5 charachters in a string I tried puting the source string into a String * 5 but it did not work can anyone help???
[email protected]
strName = "123Holdon"
firstfive = left$(strName,5)
or
firstfive = mid$(strName,1,5)
whg