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
|
|
Try this:
|
|||||
|
|
You can remove any dots at the end of a string using the
You can use the
If the last character should only be removed if it's a period, you can check for that first:
|
||||
|
|