G
Guest
Hi,
I have a string line = " DOL : 12/04/09 "
I want to remove the white spaces and to get the string like
line = "DOL : 12/04/09" ;
i have th e following coding but it is not going to if statement.
line.Trim();
if (line.StartsWith("DOL"))
{
start++;
}
I have a string line = " DOL : 12/04/09 "
I want to remove the white spaces and to get the string like
line = "DOL : 12/04/09" ;
i have th e following coding but it is not going to if statement.
line.Trim();
if (line.StartsWith("DOL"))
{
start++;
}