A
ANStech
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?
the fifth,six, and seventh character. How can I do this?
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?
Rick Brandt said:Check Help file fo rthe Mid() function.
Mid(3, 1, "Test") will return "s"
Douglas said:Um, no it won't, Rick.
Mid("Test", 3, 1) will, though...