ASP中去除特殊字符

发布于 2024-12-01 10:38:02 字数 115 浏览 1 评论 0原文

谁能告诉我如何在 ASP 中去除特殊字符(经典)。我正在使用 MS Access 数据库。我的意思是有没有像 stripslashes() 或 addslashes() {PHP} 这样的函数。 任何帮助都会得到帮助

may anyone tell me that how to strip special character in ASP (classic). I'm using MS Access database. I meant is there any function like stripslashes() or addslashes() {PHP}.
Any help will be appriciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柏拉图鍀咏恒 2024-12-08 10:38:02

PHP 中的函数 StripSlashes 可以像

function StripSlahes(input)
  StripSlashes = replace(input,"\","")  
end function

ASP 中那样编写。 AddSlashes() 稍微复杂一些,需要 3 次调用来替换

function AddSlahes(input)
    AddSlashes = replace(input,"\","\\")
    AddSlashes = replace(AddSlashes,"'","\'")
    AddSlashes = replace(AddSlashes,chr(34),"\"+chr(34))
end function

The function StripSlashes in PHP can be written as

function StripSlahes(input)
  StripSlashes = replace(input,"\","")  
end function

in ASP. AddSlashes() is slightly more complex, you need 3 calls to replace

function AddSlahes(input)
    AddSlashes = replace(input,"\","\\")
    AddSlashes = replace(AddSlashes,"'","\'")
    AddSlashes = replace(AddSlashes,chr(34),"\"+chr(34))
end function
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文