codice:
Function ReplaceRegExp(strString, strPattern, strReplace)
Dim RE: Set RE = New RegExp
With RE
.Pattern = strPattern
.Global = True
ReplaceRegExp = .Replace(strString, strReplace)
End With
End Function
Function BBCodeToHTML(strString)
strString = ReplaceRegExp(strString, "(http|ftp|https)(:\/\/[\w\-_]+)((\.[\w\-_]+)+)([\w\-\.,@?^=%&:/~\+#]*[\w\-\@?^=%&/~\+#])?", "$1$2$3$5")
strString = ReplaceRegExp(strString, "\[color=([^\]]*)\]([^\[]*)\[/color\]", "<span style=""color: $1;"">$2</span>")
strString = ReplaceRegExp(strString, "\[size=([^\]]*)\]([^\[]*)\[/size\]", "<font size=""$1"">$2</font>")
strString = ReplaceRegExp(strString, "\[font=([^\]]*)\]([^\[]*)\[/font\]", "<span style=""font-family: $1, Sans-Serif, Serif;"">$2</span>")
strString = ReplaceRegExp(strString, "\[quote=([^\]]*)\]([^\[]*)\[/quote\]", "<div class=""quote""><span style=""font-weight: bold; font-size: 8pt;"">$1 said:</span><pre class=""quote1"">$2</pre></div>")
strString = Replace(strString, "", "<span style=""font-weight: bold;"">")
strString = Replace(strString, "", "<span style=""font-weight: bold;"">")
strString = Replace(strString, "", "<span style=""text-decoration: underline;"">")
strString = Replace(strString, "", "<span style=""text-decoration: underline;"">")
strString = Replace(strString, "", "<span style="" font-style: italic;"">")
strString = Replace(strString, "", "<span style="" font-style: italic;"">")
strString = Replace(strString, "", "</span>")
strString = Replace(strString, "", "</span>")
strString = Replace(strString, "", "</span>")
strString = Replace(strString, "", "</span>")
strString = Replace(strString, "", "</span>")
strString = Replace(strString, "", "</span>")
strString = Replace(strString, "[/i]", "<ul>[*]")
strString = Replace(strString, "[LI]", "<ul>[*]")
strString = Replace(strString, "[Li]", "<ul>[*]")
strString = Replace(strString, "[lI]", "<ul>[*]")
strString = Replace(strString, "[/li]", "[/list]")
strString = Replace(strString, "[/LI]", "[/list]")
strString = Replace(strString, "[/Li]", "[/list]")
strString = Replace(strString, "[/lI]", "[/list]")
BBCodeToHTML = strString
End Function
message = BBCodeToHTML(request.form("textArea"))
Quello che si registra nella textarea del forum è questo: