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,900 questions

51,831 answers

573 users

How to find and print the common characters (letters) in different strings with VB.NET

1 Answer

0 votes
Imports System
Imports System.Text
Imports System.Collections.Generic

Public Class Program
    Public Shared Function GetCommonCharacters(ByVal str1 As String, ByVal str2 As String) As String
        Dim commonChars As HashSet(Of Char) = New HashSet(Of Char)()

        For Each ch As Char In str1
            If ch <> " "c AndAlso str2.Contains(ch) Then
                commonChars.Add(ch)
            End If
        Next

        Dim sb As StringBuilder = New StringBuilder()

        For Each ch As Char In commonChars
            sb.Append(ch)
        Next

        Return sb.ToString()
    End Function

    Public Shared Sub Main(ByVal args As String())
        Dim str1 As String = "c c++ c# java go"
        Dim str2 As String = "python nodejs php javascript"

        Dim strcommon As String = GetCommonCharacters(str1, str2)

        Console.WriteLine("Same letters are: " & strcommon)
    End Sub
End Class




' run:
'
' Same letters are: cjavo
'

 



answered Jan 26, 2024 by avibootz
...