M
microsoft
Sorry. Maybe I'm too lazy here.
What is the code for returning all but the last character of a string?
In vb6:
s="12345"
s=left(s,len(s)-1)
's would now be "1234"
Seems like using s.substring would be involved....
What is the code for returning all but the last character of a string?
In vb6:
s="12345"
s=left(s,len(s)-1)
's would now be "1234"
Seems like using s.substring would be involved....