If this is for parsing purposes then just having tabs in the document will be parsed out fine (they *are* in the document). It is only when the document is used for display by an end user-agent (which, I think your document is getting parsed by the server code..?) that tabs are treated the same as 'other' whitespace.
Of course, when you bring it up in a brower it would look like this:
FIELD1| 2| 3 | 4 | etc. etc.
However, if you just dump the file out on the server side (print it to the system console, which should respect tab characters), then it will look like this (assuming 5 character tab):
FIELD1| 2| 3 | 4 | etc. etc.
-Mark
Main Topics
Browse All Topics





by: ldbkuttyPosted on 2004-04-29 at 07:43:32ID: 10949904
There is no TAB tag available in html, upto my knoledge...
bsp; FIELD 2| ....
Use ...this is equal to a single blank space....
Example:
<html>
<body>
FIELD 1| &n
</body>
</html>