Sign in | Join
Last post 12-17-2007 5:24 PM by mr.aspdotnet. 3 replies.
Sort Posts: Oldest to newest Newest to oldest
e.g. " My String "
Thanks!
nothing more then string.trim(); put the string value in a string variable.
greets,
Erdem
Here are the methods available to you
public
public string TrimStart(params char[] trimChars);
Hi,
try this
String myString = " My String ";
myString.Trim(' ');
Regards