How to trim the last comma delimiter of a string in VB.NET

1 Answer

0 votes
Imports System

Public Class Program
	Public Shared Sub Main()
		Dim s As String = "c c++, java, php python, c# vb,"
		
        Dim comma As String = ","
		
        s = s.TrimEnd(CChar(comma))
			
        Console.Write(s)
    End Sub
End Class
	
	

	
	
' run:
'	
' c c++, java, php python, c# vb
'

 



answered Apr 18, 2022 by avibootz

Related questions

1 answer 113 views
1 answer 163 views
1 answer 163 views
1 answer 165 views
...