util.asp
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <!--
  2.  * FCKeditor - The text editor for internet
  3.  * Copyright (C) 2003-2005 Frederico Caldeira Knabben
  4.  * 
  5.  * Licensed under the terms of the GNU Lesser General Public License:
  6.  *  http://www.opensource.org/licenses/lgpl-license.php
  7.  * 
  8.  * For further information visit:
  9.  *  http://www.fckeditor.net/
  10.  * 
  11.  * File Name: util.asp
  12.  *  This file include generic functions used by the ASP Connector.
  13.  * 
  14.  * File Authors:
  15.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  16. -->
  17. <%
  18. Function RemoveFromStart( sourceString, charToRemove )
  19. Dim oRegex
  20. Set oRegex = New RegExp
  21. oRegex.Pattern = "^" & charToRemove & "+"
  22. RemoveFromStart = oRegex.Replace( sourceString, "" )
  23. End Function
  24. Function RemoveFromEnd( sourceString, charToRemove )
  25. Dim oRegex
  26. Set oRegex = New RegExp
  27. oRegex.Pattern = charToRemove & "+$"
  28. RemoveFromEnd = oRegex.Replace( sourceString, "" )
  29. End Function
  30. Function ConvertToXmlAttribute( value )
  31. ConvertToXmlAttribute = Replace( value, "&", "&amp;" )
  32. End Function
  33. Function InArray( value, sourceArray )
  34. Dim i
  35. For i = 0 to UBound( sourceArray )
  36. If sourceArray(i) = value Then
  37. InArray = True
  38. Exit Function
  39. End If
  40. Next
  41. InArray = False
  42. End Function
  43. %>