remove

  • Thread starter Thread starter Aaron
  • Start date Start date
A

Aaron

what function do i use to remove leading and trailing space?

" ABC "
i want the string to be
"ABC"


thanks
 
Aaron,

Mark is right. But you may want to look at all the string methods
availible. For instance, the TrimStart() and the TrimEnd() methods.

Glen Jones MCSD
 
Back
Top