Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > Any utilities to remove the ALL the Microsoft formatting tags?

Reply
Thread Tools

Any utilities to remove the ALL the Microsoft formatting tags?

 
 
Shiperton Henethe
Guest
Posts: n/a
 
      09-15-2003
Hi

Know any good utilities to help me strip out the tags that
Microsoft Excel 2002 leaved behind when you try
and export an HTML format file?

This is driving me NUTS.
And really makes me hate microsoft with a passion.

I literally just want "compact HTML" - ie just the data,
plus the minimal table structure
and *NO FORMATTING CODES* of any sort!!

I did have a utility but it was on my previous PC
and I cant remember what it was called.

I would be prepared to pay no more than say GBP 10.00
for such a utility (which I only need every couple of months...)


Ship
Shiperton Henethe

p.s. I do have Dreamweaver 4, but it crashes every time it tries
to open the (2500 line) document exported from Microsoft Excel 2002!


 
Reply With Quote
 
 
 
 
Brian
Guest
Posts: n/a
 
      09-15-2003
Please avoid excessive cross-posting. This post did not belong in
html.critique (removed). I also removed the microsoft group, since
the solution is not MS. Followups set (you should have set them in
the first place) to alt.html.

Shiperton Henethe wrote:
>
> Know any good utilities to help me strip out the tags that
> Microsoft Excel 2002 leaved behind when you try
> and export an HTML format file?


HTML Tidy
< http://tidy.sourceforge.net/ >

--
Brian
follow the directions in my address to email me

 
Reply With Quote
 
 
 
 
William Tasso
Guest
Posts: n/a
 
      09-15-2003
Shiperton Henethe wrote:
> Know any good utilities to help me strip out the tags that
> Microsoft Excel 2002 leaved behind when you try
> and export an HTML format file?
>


have you considered exporting to csv?

--
William Tasso - http://WilliamTasso.com


 
Reply With Quote
 
Marc Bissonnette
Guest
Posts: n/a
 
      09-15-2003
"Shiperton Henethe" <> wrote in news:3f65d1e2$0$24105
$:

> Hi
>
> Know any good utilities to help me strip out the tags that
> Microsoft Excel 2002 leaved behind when you try
> and export an HTML format file?
>
> This is driving me NUTS.
> And really makes me hate microsoft with a passion.
>
> I literally just want "compact HTML" - ie just the data,
> plus the minimal table structure
> and *NO FORMATTING CODES* of any sort!!
>
> I did have a utility but it was on my previous PC
> and I cant remember what it was called.
>
> I would be prepared to pay no more than say GBP 10.00
> for such a utility (which I only need every couple of months...)
>
>
> Ship
> Shiperton Henethe
>
> p.s. I do have Dreamweaver 4, but it crashes every time it tries
> to open the (2500 line) document exported from Microsoft Excel 2002!
>
>


Easiest way to do this is with a text editor that has search-with-
replace, such as UltraEdit.

Here's what ya do:

Save the Excel file as a character delimited file. Lessay you use the
pipe as the separator: |

So file.xls becomes file.txt

Open file.txt in your text editor and do the following:
(In Ultra Edit,^p is a NEWLINE, ^t is a TAB)

Search for: |
Replace with: </TD><TD>

Next,

Search for: ^p
Replace with: </TD></TR>^p<TR><TD>

Then put a <TABLE> at the top of the file and a </TABLE> at the bottom of
the file.

Voila: A compact, HTML-ized excel table

--
Marc Bissonnette
/ Perl / CGI / Database / Dynamic Web Content Control /
http://www.internalysis.com
Looking for a new ISP? http://www.canadianisp.com
 
Reply With Quote
 
Shiperton Henethe
Guest
Posts: n/a
 
      09-15-2003





I also removed the microsoft group, since
> the solution is not MS.

No but the *problem* is MS.
And MS community of users may have found a solution.

> Followups set (you should have set them in
> the first place) to alt.html.

I have no idea what you mean.

>
> Shiperton Henethe wrote:
> >
> > Know any good utilities to help me strip out the tags that
> > Microsoft Excel 2002 leaved behind when you try
> > and export an HTML format file?

>
> HTML Tidy
> < http://tidy.sourceforge.net/ >


Thank you


 
Reply With Quote
 
Ian Miller
Guest
Posts: n/a
 
      09-15-2003
Tidy (http://tidy.sourceforge.net/) does a pretty good job on Office
documents. I use TidyUI for my day to day editing, and like it a lot!


Ian M



Shiperton Henethe wrote:
> Hi
>
> Know any good utilities to help me strip out the tags that
> Microsoft Excel 2002 leaved behind when you try
> and export an HTML format file?
>
> This is driving me NUTS.
> And really makes me hate microsoft with a passion.
>
> I literally just want "compact HTML" - ie just the data,
> plus the minimal table structure
> and *NO FORMATTING CODES* of any sort!!
>
> I did have a utility but it was on my previous PC
> and I cant remember what it was called.
>
> I would be prepared to pay no more than say GBP 10.00
> for such a utility (which I only need every couple of months...)
>
>
> Ship
> Shiperton Henethe
>
> p.s. I do have Dreamweaver 4, but it crashes every time it tries
> to open the (2500 line) document exported from Microsoft Excel 2002!
>
>


 
Reply With Quote
 
Shiperton Henethe
Guest
Posts: n/a
 
      09-15-2003

"William Tasso" <> wrote in message
news:bk4kii$p4tbv$...
> Shiperton Henethe wrote:
> > Know any good utilities to help me strip out the tags that
> > Microsoft Excel 2002 leaved behind when you try
> > and export an HTML format file?
> >

>
> have you considered exporting to csv?


That's an interesting question - I must
confess I dont think I'd considered it...

But do on then, how does one create a compact
HTML table from CVS? Can you import it into
Dreamweaver (v4)? And then cut and paste into
the file where I need it. (There are 2500 rows
of data, mind you, which may be why Dreamweaver
keeps crashing whenever I try read msExcel's
..HTML export)...

Ship
Shiperton Henethe


 
Reply With Quote
 
Karim
Guest
Posts: n/a
 
      09-15-2003
On Mon, 15 Sep 2003 15:54:05 +0100, Shiperton Henethe wrote:

> Hi
>
> Know any good utilities to help me strip out the tags that
> Microsoft Excel 2002 leaved behind when you try
> and export an HTML format file?
>
> This is driving me NUTS.
> And really makes me hate microsoft with a passion.
>
> I literally just want "compact HTML" - ie just the data,
> plus the minimal table structure
> and *NO FORMATTING CODES* of any sort!!
>
> I did have a utility but it was on my previous PC
> and I cant remember what it was called.
>
> I would be prepared to pay no more than say GBP 10.00
> for such a utility (which I only need every couple of months...)
>
>
> Ship
> Shiperton Henethe
>
> p.s. I do have Dreamweaver 4, but it crashes every time it tries
> to open the (2500 line) document exported from Microsoft Excel 2002!


I tried to use Dreamweaver MX 2004 to clean a html file produced from Excel
and it said "Nothing to clean up!". If there are no redundant or empty
tags, a cleanup utility won't be of much help. Excel produces verbose html
which is still valid.


--
Karim
Recommended host: http://www.cheapesthosting.com - Affordable hosting since
1998
 
Reply With Quote
 
Shiperton Henethe
Guest
Posts: n/a
 
      09-15-2003
Sounds promising but - Gad streuth!! - I cant understand
what the heck I'm looking at...

I downloaded something called tidy.exe, and when I ran
it all I got was a big black box. With a flashing cursor
in it...

Maybe I'm too stupid to use this thing...
What do I download for msWindows2000 (and WinXP)?!


Ship
Shiperton Henethe


> Tidy (http://tidy.sourceforge.net/) does a pretty good job on Office
> documents. I use TidyUI for my day to day editing, and like it a lot!
>
>
> Ian M
>
>
>
> Shiperton Henethe wrote:
> > Hi
> >
> > Know any good utilities to help me strip out the tags that
> > Microsoft Excel 2002 leaved behind when you try
> > and export an HTML format file?
> >
> > This is driving me NUTS.
> > And really makes me hate microsoft with a passion.
> >
> > I literally just want "compact HTML" - ie just the data,
> > plus the minimal table structure
> > and *NO FORMATTING CODES* of any sort!!
> >
> > I did have a utility but it was on my previous PC
> > and I cant remember what it was called.
> >
> > I would be prepared to pay no more than say GBP 10.00
> > for such a utility (which I only need every couple of months...)
> >
> >
> > Ship
> > Shiperton Henethe
> >
> > p.s. I do have Dreamweaver 4, but it crashes every time it tries
> > to open the (2500 line) document exported from Microsoft Excel 2002!
> >
> >

>



 
Reply With Quote
 
Karim
Guest
Posts: n/a
 
      09-15-2003
On Mon, 15 Sep 2003 16:29:15 +0100, Shiperton Henethe wrote:

>
> "William Tasso" <> wrote in message
> news:bk4kii$p4tbv$...
>> Shiperton Henethe wrote:
>>> Know any good utilities to help me strip out the tags that
>>> Microsoft Excel 2002 leaved behind when you try
>>> and export an HTML format file?
>>>

>>
>> have you considered exporting to csv?

>
> That's an interesting question - I must
> confess I dont think I'd considered it...
>
> But do on then, how does one create a compact
> HTML table from CVS? Can you import it into
> Dreamweaver (v4)? And then cut and paste into
> the file where I need it. (There are 2500 rows
> of data, mind you, which may be why Dreamweaver
> keeps crashing whenever I try read msExcel's
> .HTML export)...
>
> Ship
> Shiperton Henethe


If you have MS Access, you can read in the xls or csv file and export to
HTML. Access produces clean html.


--
Karim
Recommended host: http://www.cheapesthosting.com - Affordable hosting since
1998
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
microsoft.public.certification, microsoft.public.cert.exam.mcsa, microsoft.public.cert.exam.mcad, microsoft.public.cert.exam.mcse, microsoft.public.cert.exam.mcsd loyola MCSE 4 11-15-2006 02:40 AM
microsoft.public.certification, microsoft.public.cert.exam.mcsa, microsoft.public.cert.exam.mcad, microsoft.public.cert.exam.mcse, microsoft.public.cert.exam.mcsd loyola Microsoft Certification 3 11-14-2006 05:18 PM
microsoft.public.certification, microsoft.public.cert.exam.mcsa, microsoft.public.cert.exam.mcad, microsoft.public.cert.exam.mcse, microsoft.public.cert.exam.mcsd loyola MCSD 3 11-14-2006 05:18 PM
microsoft.public.certification, microsoft.public.cert.exam.mcsa, microsoft.public.cert.exam.mcad, microsoft.public.cert.exam.mcse, microsoft.public.cert.exam.mcsd realexxams@yahoo.com Microsoft Certification 0 05-10-2006 02:35 PM
microsoft.public.dotnet.faqs,microsoft.public.dotnet.framework,microsoft.public.dotnet.framework.windowsforms,microsoft.public.dotnet.general,microsoft.public.dotnet.languages.vb Charles A. Lackman ASP .Net 1 12-08-2004 07:08 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57