Asp > Code Snippets
Trim spaces from a string
Trim spaces from a string <% 'our text strText = " myname " 'display the normal text Response.Write "Hello" & strText & "how are you
" 'remove left spaces Response.Write "Hello" & ltrim(strText) & "how are you
" 'remove right spaces Response.Write "Hello" & rtrim(strText) & "how are you
" 'remove left and right spaces Response.Write "Hello" & trim(strText) & "how are you
" %>
Asp Codes
ActiveX
ADO
Array
Code Snippets
Components
Data Access
Date Time
Files
Graphics
HTML Formatting
Mathematics
Miscellaneous
Sessions
SQL
Strings
Techniques
XML