如何替换 - - 在经典ASP中

时间:2014-08-08 15:23:36

标签: vbscript asp-classic

我想将此行分隔符代码替换为<br> 那个&#8232;的vb代码是什么?

1 个答案:

答案 0 :(得分:1)

使用ChrW()函数返回Unicode字符,然后Replace()来搜索字符串并替换字符的实例。

Dim text
text = Replace("Your input input string here", ChrW(8232), "<br />")