日期:2014-05-17  浏览次数:21067 次

请教:关于替换字符串问题?
下面语句可以将所有前面有> 的字符替换,但将> 改成双引号就不能用?
<%
currtext=replace(currtext, "> "&word, "> "&geten(word)
%>

如:(将> 改成双引号):
currtext=replace(currtext, " " "&word, " " "&geten(word)
请问应该写呢?

------解决方案--------------------
currtext=replace(currtext, "chr(34)&word, "chr34&geten(word)