Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have to remove the dot at the end of text howt to i do

usign c#, dot.net

example = abc.

i want this = abc

share|improve this question
will the undesirable dot always be the last character? – Tahbaza Jul 7 '10 at 1:39

2 Answers

up vote 9 down vote accepted

Try this:

string a = "abc.";
string b = a.TrimEnd('.'); 
share|improve this answer
1  
good perfect ,nice – azeem Jul 7 '10 at 2:04

You can remove any dots at the end of a string using the TrimEnd method:

str = str.TrimEnd('.');

You can use the Substring method to remove only the last character:

str = str.Substring(0, str.Length - 1);

If the last character should only be removed if it's a period, you can check for that first:

if (str[str.Length - 1] == '.') {
  str = str.Substring(0, str.Length - 1);
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.