Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,974 questions

51,918 answers

573 users

How to replace a character in StringBuilder with VB.NET

2 Answers

0 votes
Imports System
Imports System.Text

Public Class Program
    Public Shared Sub Main(ByVal args As String())
		Dim sb As StringBuilder = New StringBuilder("VB.NET-programming-in-the-enterprise")
        Dim ch As Char = "-"c

        For i As Integer = 0 To sb.Length - 1
            If sb(i) = ch Then
                sb(i) = " "c
            End If
        Next

        Console.WriteLine(sb)
    End Sub
End Class




' run:
'
' VB.NET programming in the enterprise
'

 



answered Jul 19, 2022 by avibootz
0 votes
Imports System
Imports System.Text

Public Class Program
    Public Shared Sub Main(ByVal args As String())
		Dim sb As StringBuilder = New StringBuilder("VB.NET-programming-in-the-enterprise")
		
        Dim ch As Char = "-"c
		
        Dim str As String = sb.ToString().Replace(ch, " "c)
		
        Console.WriteLine(str)
    End Sub
End Class





' run:
'
' VB.NET programming in the enterprise
'

 



answered Jul 19, 2022 by avibootz

Related questions

1 answer 101 views
1 answer 133 views
1 answer 143 views
2 answers 244 views
2 answers 159 views
1 answer 190 views
...