I need this all the time and am constantly frustrated that the Trim(), TrimStart() and TrimEnd() functions don’t take strings as inputs. You call EndsWith() on a string, and find out if it ends with another string, but then if you want to remove it from the end, you have to do substring hacks to do it (or call Remove() and pray it is the only instance…)
Why is this basic function is missing in .NET? And second, any recommendations for a simple way to implement this (preferably not the regular expression route…)
TrimEnd()(and the other trim methods) accept characters to be trimmed, but not strings. If you really want a version that can trim whole strings then you could create an extension method. For example…This can then be called just like the built in methods.