最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
利用正则表达式把用URLEncode的字符串转换成正常的字符串函数
时间:2022-06-30 10:07:05 编辑:袖梨 来源:一聚教程网
使用例子:
<%
response.write Server.URLEncode("Hello World!") & "
"
response.write URLDecode(Server.URLEncode("Hello World!"))
%>
运行输出结果:
Hello+World%21
Hello World!
缺点:这个函数不支持中文。