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

51,859 answers

573 users

How to split string by multiple character delimiter in VB.NET

1 Answer

0 votes
Imports System

Public Class SplitStringByMultipleCharacterDelimiter_VB_NET
    Public Shared Sub Main()
		Dim s As String = "Visual Basic .NET (VB.NET)" + Environment.NewLine +
                          "is a:multi-paradigm, object-oriented" + Environment.NewLine +
                          "programmin@ language."
 
        Dim sp As String() = s.Split(New [Char]() {","c, "."c, ":"c, CChar(Environment.NewLine)})
 
        For Each subs As String In sp
            If subs.Trim() <> "" Then
                Console.WriteLine(subs.Trim())
            End If
        Next subs
    End Sub
End Class


' run:
'
' Visual Basic
' NET (VB
' NET)
' is a
' multi-paradigm
' object-oriented
' programming language
'
 

 



answered Jul 27, 2018 by avibootz
edited Sep 14, 2024 by avibootz

Related questions

1 answer 112 views
1 answer 102 views
1 answer 99 views
1 answer 103 views
2 answers 252 views
...