CCode.asp 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <%
  2. function unicode(str)
  3. If str="" Or IsNull(str) Then unicode="":Exit Function
  4. dim i,j,c,i1,i2,u,fs,f,p
  5. unicode=""
  6. p=""
  7. for i=1 to len(str)
  8. c=mid(str,i,1)
  9. j=ascw(c)
  10. if j<0 then
  11. j=j+65536
  12. end if
  13. if j>=0 and j<=128 then
  14. if p="c" then
  15. unicode=" "&unicode
  16. p="e"
  17. end if
  18. unicode=unicode&c
  19. else
  20. if p="e" then
  21. unicode=unicode&" "
  22. p="c"
  23. end if
  24. unicode=unicode&"&#"&j&";"
  25. end if
  26. next
  27. end function
  28. function cutline(str,linelen)
  29. dim i,j,c,k
  30. cutline=""
  31. j=0
  32. for i=1 to len(str)
  33. c=mid(str,i,1)
  34. if asc(c)<0 or asc(c)>127 then
  35. k=2
  36. else
  37. if asc(c)<32 then
  38. k=0
  39. if asc(c)=13 then
  40. j=0
  41. cutline=cutline+"<br/>"+c
  42. c=""
  43. end if
  44. else
  45. k=1
  46. end if
  47. end if
  48. j=j+k
  49. if j>linelen*2 then
  50. cutline=cutline+"<br/>"+vbCrlf+c
  51. j=k
  52. else
  53. cutline=cutline+c
  54. end if
  55. next
  56. end function
  57. function convertsymbol(sStr)
  58. dim i,c
  59. convertsymbol=""
  60. for i=1 to len(sStr)
  61. c=mid(sStr,i,1)
  62. if c=">" then
  63. convertsymbol=convertsymbol & ">"
  64. elseif c="<" then
  65. convertsymbol=convertsymbol & "<"
  66. elseif c="'" then
  67. convertsymbol=convertsymbol & "&apos;"
  68. elseif c="""" then
  69. convertsymbol=convertsymbol & """"
  70. elseif c="&" then
  71. convertsymbol=convertsymbol & "&"
  72. elseif c="$" then
  73. convertsymbol=convertsymbol & "$$"
  74. else
  75. convertsymbol=convertsymbol & c
  76. end if
  77. next
  78. end function
  79. function convertstring(sStr)
  80. dim strtemp,asctemp,c
  81. strtemp=""
  82. for i=1 to len(sStr)
  83. c=mid(sStr,i,1)
  84. asctemp=ascw(c)
  85. if (asctemp>47 and asctemp<58) or (asctemp>64 and asctemp<91) or (asctemp>96 and asctemp<123) then
  86. strtemp=strtemp & c
  87. end if
  88. next
  89. convertstring=Lcase(strtemp)
  90. end function
  91. %>