Answers for "remove last letter from a string c#"

C#
36

c# remove last character from string

string Name = "Teste,"
string ReturnName = "";
ReturnName = Name.Remove(Name.Length - 1);
Posted by: Guest on June-19-2020
2

remove last instance of string c#

public static string ReplaceLastOccurrence(string Source, string Find, string Replace)
{
        int place = Source.LastIndexOf(Find);

        if(place == -1)
           return Source;

        string result = Source.Remove(place, Find.Length).Insert(place, Replace);
        return result;
}
Posted by: Guest on December-14-2020

Code answers related to "remove last letter from a string c#"

C# Answers by Framework

Browse Popular Code Answers by Language