programming-examples/asp/More_Code_Snippets/Trim spaces from a string.asp
2019-11-18 14:25:58 +01:00

12 lines
386 B
Plaintext

<%
'our text
strText = " myname "
'display the normal text
Response.Write "Hello" & strText & "how are you<br>"
'remove left spaces
Response.Write "Hello" & ltrim(strText) & "how are you<br>"
'remove right spaces
Response.Write "Hello" & rtrim(strText) & "how are you<br>"
'remove left and right spaces
Response.Write "Hello" & trim(strText) & "how are you<br>"
%>