Function LoseObjectTag(ContentStr) Dim ClsTempLoseStr,regEx ClsTempLoseStr = Cstr(ContentStr) Set regEx = New RegExp regEx.Pattern = "<object.*?/object>" regEx.IgnoreCase = True regEx.Global = True ClsTempLoseStr = regEx.Replace(ClsTempLoseStr,"") LoseObjectTag = ClsTempLoseStr Set regEx = Nothing End Function
飞.飞Asp技术乐园
|