G Guest Jun 29, 2005 #1 I have a string of data. I need to "read" certain characters, for instance the fifth,six, and seventh character. How can I do this?
I have a string of data. I need to "read" certain characters, for instance the fifth,six, and seventh character. How can I do this?
R Rick Brandt Jun 29, 2005 #3 ANStech said: I have a string of data. I need to "read" certain characters, for instance the fifth,six, and seventh character. How can I do this? Click to expand... Check Help file fo rthe Mid() function. Mid(3, 1, "Test") will return "s"
ANStech said: I have a string of data. I need to "read" certain characters, for instance the fifth,six, and seventh character. How can I do this? Click to expand... Check Help file fo rthe Mid() function. Mid(3, 1, "Test") will return "s"
D Douglas J Steele Jun 29, 2005 #4 Rick Brandt said: Check Help file fo rthe Mid() function. Mid(3, 1, "Test") will return "s" Click to expand... Um, no it won't, Rick. Mid("Test", 3, 1) will, though...
Rick Brandt said: Check Help file fo rthe Mid() function. Mid(3, 1, "Test") will return "s" Click to expand... Um, no it won't, Rick. Mid("Test", 3, 1) will, though...
R Rick Brandt Jun 29, 2005 #5 Douglas said: Um, no it won't, Rick. Mid("Test", 3, 1) will, though... Click to expand... DOH! I think I was still in InStr() mode where the start position comes first when I wrote that.
Douglas said: Um, no it won't, Rick. Mid("Test", 3, 1) will, though... Click to expand... DOH! I think I was still in InStr() mode where the start position comes first when I wrote that.