witten
/
luminotes
Archived
1
0
Fork 0

Making drop_html_tags() function turn "<br/>" into " ".

This commit is contained in:
Dan Helfman 2007-11-09 00:37:13 +00:00
parent 9cee493141
commit b5b29c3e97
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ SET default_with_oids = false;
--
CREATE FUNCTION drop_html_tags(text) RETURNS text
AS $_$select regexp_replace( regexp_replace( $1, '</?(div|p|br|ul|ol|li|h3)( [^>]*?)?>', ' ', 'gi' ), '<[^>]+?>', '', 'g' );$_$
AS $_$select regexp_replace( regexp_replace( $1, '</?(div|p|br|ul|ol|li|h3)( [^>]*?)?/?>', ' ', 'gi' ), '<[^>]+?>', '', 'g' );$_$
LANGUAGE sql;