How to remove the last comma from the end of string in C#

1 Answer

0 votes
using System;

class Program
{
    static void Main() {
        string s = "c,c++,c#,python,java,";
        
        if (s.EndsWith(',')) {
            s = s.TrimEnd(',');
        }

        Console.Write(s);
    }
}



/*
run:

c,c++,c#,python,java

*/

 



answered Apr 12, 2022 by avibootz

Related questions

1 answer 136 views
1 answer 195 views
1 answer 164 views
1 answer 151 views
1 answer 160 views
2 answers 200 views
2 answers 199 views
...