Answers for "c# remove 3rd characters from the end of a string"

VBA
3

how to remove last 3 characters from string in c#

myString = myString.Substring(0, myString.Length-3);
Posted by: Guest on October-02-2020
4

c# remove first 5 characters from string

str = str.Substring(n); //Where n is the number of characters you want to remove
Posted by: Guest on April-20-2020

Code answers related to "c# remove 3rd characters from the end of a string"

Code answers related to "VBA"

Browse Popular Code Answers by Language