I am trying to get the substring method to work. The online documentation claims that is included in the string.h library, but I cannot find any reference to substring in that library. From what I have read online the syntax should be something like
Str2=Str1.subString(2,6) Which ought to return the characters in the 2nd through 6th positions of Str1.
Anybody know how I can fix this? Is there a line or three I can add to the string.h file? Or is there a better way to handle this?