【ASP】三种字符串空格去除方式

简介:

name = " W3Cschool "
response.write("visit" & name & "now<br>")
response.write("visit" & trim(name) & "now<br>")
response.write("visit" & ltrim(name) & "now<br>")
response.write("visit" & rtrim(name) & "now")
相关文章
|
.NET C# 数据安全/隐私保护
|
前端开发 JavaScript .NET
|
.NET C# 数据安全/隐私保护