I need to convert a .xls file to html. Please do not suggest File>Save As HTML.
I've dumped the .xls file to .txt:
I wish to add tags to the beginning and end of each field on each line like so:
The problem:
I wish to refer to Description of item# with variable length as a single field. Let's call it $DESCRIPTIONFIELD
Constants:
# The beginning of $DESCRIPTIONFIELD is always after the end of the first field.
# The end of $DESCRIPTIONFIELD always precedes a dollar sign '$'
How to set $DESCRIPTIONFIELD ? Thanks alot!
I've dumped the .xls file to .txt:
Code:
3300-1504-000 short item# description $51.00 $22.46 $12.44 $6.32
0640-0219-000 a longer different item# description $903.00 $296.58 $215.09
0640-0219-003 Yet another item# description of a different length $177.52
I wish to add tags to the beginning and end of each field on each line like so:
Code:
<tr><td>0640-0003-03A</td><td>Description of item# with variable length</td><td>$478.00</td><td>$362.30</td><td>$95.00</td><td>$185.00</td></tr>
The problem:
I wish to refer to Description of item# with variable length as a single field. Let's call it $DESCRIPTIONFIELD
Constants:
# The beginning of $DESCRIPTIONFIELD is always after the end of the first field.
# The end of $DESCRIPTIONFIELD always precedes a dollar sign '$'
How to set $DESCRIPTIONFIELD ? Thanks alot!