Switch to full style
ASP/ASP.net examples
Post a reply

remove space ,trim strings from left side ,right side ,both.

Sat Apr 09, 2011 12:19 am

Remove spaces from string in ASP , trim strings.
Code:
<% 
    Dim strObj
, newStrObj
     notice white spaces 
.
    strObj = " My Name is Tom  "
    Response.Write("String before trim =" & strObj)
    newStrObj = LTrim(strObj)
    Response.Write("Left trim:String after  =" & newStrObj)
    newStrObj = RTrim(strObj)
    Response.Write("Right trim:String after  =" & newStrObj)
    newStrObj = Trim(strObj)
    Response.Write("Both sides trim:String after  =" & newStrObj)
    
    
%> 




Post a reply
  Related Posts  to : remove space ,trim strings from left side ,right side ,both.
 show figures side by side using subfigure     -  
 Can I display same vertically on right side?     -  
 Need Help with Server side scriping in Java     -  
 Client-side Caching using AJAX & Javascript     -  
 Ajax Source code to Suggest application with JSP Server side     -  
 Sort strings java-Sorting Array of Strings     -  
 Trim string in JavaScript     -  
 Perform Multiplication by Shift Left Operations     -  
 hi i need ppt for space mouse.     -  

Topic Tags

ASP Strings