Oct 10th, 2000, 04:19 PM
Hi there, I would need to know if there's a way to read characters of any given string variable with vbscript. In my case all I need to find out is the first character of a string. This is how I picture the codes:
strvar = "A1"
firstchar = strvar(0)
... but I know if I do this I would then make reference to an array which isn't what I wanna do. If you have a better way to do it please let me know. Thanks.
strvar = "A1"
firstchar = strvar(0)
... but I know if I do this I would then make reference to an array which isn't what I wanna do. If you have a better way to do it please let me know. Thanks.