Hi Ian,
Quote:
I'm working on maintaining an application badly implemented in Basic+ - the
Openinsight variety of multivalue.
I need to re-write a function to rempove HTML tags properly from a string
(the current one lets tags through).
Does anyone know of a way to accomplish this in Basic+?
I was hoping to use some form of regular expression maybe? Does anything
exist in Basic+ to help me? |
This is not BASIC but you might look at the user supplied notes in the
PHP manual for the strip_tags() function:
http://us3.php.net/manual/en/function.strip-tags.php
There are lots of homebrew regexp solutions there that you could likely
borrow and apply in a BASIC program.
HTH,
-Tom