替换字符串的特定字符
代码:
<!DOCTYPE html><html>
<body>
<%
sometext="Welcome to this Web!!"
response.write(Replace(sometext, "Web", "Page"))
%>
</body>
</html>
结果:
Welcome to this Page!!
相关文章
<!DOCTYPE html><html>
<body>
<%
sometext="Welcome to this Web!!"
response.write(Replace(sometext, "Web", "Page"))
%>
</body>
</html>
Welcome to this Page!!