From 5b718fe88d64c8b33ab0ef2c3d5d2ac26d8c154d Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Wed, 20 Aug 2008 16:40:25 +0000 Subject: [PATCH] * luci/libs: add striptags() to luci.util --- libs/core/luasrc/util.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/libs/core/luasrc/util.lua b/libs/core/luasrc/util.lua index c6d9ec6ce..66e368299 100644 --- a/libs/core/luasrc/util.lua +++ b/libs/core/luasrc/util.lua @@ -208,6 +208,13 @@ function pcdata(value) return value:gsub(">", ">") end +--- Strip HTML tags from given string. +-- @param value String containing the HTML text +-- @return String with HTML tags stripped of +function striptags(s) + return (s:gsub("]*>", " "):gsub("%s+", " ")) +end + --- Splits given string on a defined separator sequence and return a table -- containing the resulting substrings. The optional max parameter specifies -- the number of bytes to process, regardless of the actual length of the given -- 2.25.1