Can anyone tell me how to search for non-printing characters within a
string. I need to split a field at "<TAB>" and "<CR>" characters, but
these don't seem to exist, when going through each ascii value using
getpos.
eg. String "Hello<TAB>World" - Character 6 would be "o", 7 = "W";
where is my tab ???.
Thanks in advance.
John Chatwood
ForNext (Count; 1; CharLen (MyString); 1)
Test=SubChar (MyString; Count; 1)
EndFor
(I don't know what "getpos" is...)
-- Gordon