Re: Having problem with SPLIT



* Ralf Fassel <ralfixx@xxxxxx>
| In other words do you send one char \t aka TAB aka ASCII-9, or two
| chars, "\" followed by "t"?
....

Argh, Send-Key was too sensitive...

In any case, have a look at 'subst' which performs
backslash-substitution if your goal is to transform the two characters
"\" "t" into one TAB character.

subst {\tHeader}
=>
Header
^ TAB char here

HTH
R'
.