04-07-2006 05:47 PM
04-09-2006 01:58 PM
Hi,
TestStand is a bit limited in this, you would be better doing it a code module in either C or labVIEW.
Regards
Ray Farmer
04-10-2006 10:48 AM
If you still want to do it in TestStand, you have Mid(), Asc(), Chr(), <, >, ==, StrComp(), etc.. to manipulate and compare strings and characters.
For example, it you want to know if a particular character is alphabetic:
Locals
.characterInUpperCase = ToUpper(Mid(Locals.stringOfInterest, Locals.characterIndex, 1)),Locals
.isAlphabetic = StrComp(Locals.characterInUpperCase , "A") >= 0 && StrComp(Locals.characterInUpperCase , "Z") <= 0Admittedly, an IsApha() function would be nice.
04-10-2006 12:27 PM
That is what I ultimately will do. In fact have already begun and it seems to work. Thanks for your assistance.
Tony