When I purchased 4.5, I used to have a pretty decent HTML stripper that was in my macro program. Did the upgrade to the 4.62 and now it is gone because I had to remove the old 4.5 version to make 4.62 work okay.
Anyone know where I can get that macro again? Or did I just miss it here in the download library?
Bob
HTML Stripper
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
Re: HTML Stripper
What about a simple regular expression search, where you search for
and replace it with "" (nothing)?
As long as you are sure that every displaying "<" and ">" is written as "&" and "&", what about "HTML stripping" is more complicated than this?
Code: Select all
<[^>]+>
As long as you are sure that every displaying "<" and ">" is written as "&" and "&", what about "HTML stripping" is more complicated than this?
Re: HTML Stripper
That's [AMPERSAND]lt; and [AMPERSAND]gt;jeffy wrote:As long as you are sure that every displaying "<" and ">" is written as "&" and "&"...
Re: HTML Stripper
jeffy wrote:What about a simple regular expression search, where you search for
and replace it with "" (nothing)?Code: Select all
<[^>]+>
As long as you are sure that every displaying "<" and ">" is written as "&" and "&", what about "HTML stripping" is more complicated than this?
A regular expression? If you say so.... Maybe that Discrete Mathematics course next quarter WILL make a difference
Re: HTML Stripper
Just check "Regular Expression" in the "Replace" dialog.Anonymous wrote:A regular expression? If you say so.... Maybe that Discrete Mathematics course next quarter WILL make a difference
And then, check out my FAQ on TextPad regular expressions, at the url below.
Re: HTML Stripper
Hmmm... The forum logged me out, so my signature (and therefore "the url below") didn't print. Here it is...Anonymous wrote:And then, check out my FAQ on TextPad regular expressions, at the url below.
-
- Posts: 9
- Joined: Fri Mar 14, 2003 9:10 pm
- Location: Chicago
Found it....
Well, what I was looking for was under the
Configure | Preference | Macros
section. Actually, there are 2, but I had to highlight one and add it and now it is there.
Configure | Preference | Macros
section. Actually, there are 2, but I had to highlight one and add it and now it is there.