devxlogo

Split Strings Cleanly, Redux

What if you want to split an array on more than one delimiter? Adding a few lines of code and using recursion can enhance the function to handle multiple delimiters.

When more than one delimiter is passed into the function, you rejoin the filtered array using the next delimiter, drop the current delimiter from the delimiter list, and call the function again:

 Public Function CleanSplit2( _	ByVal Expression As String, _	Optional ByVal Delimiters As String = " ", _	Optional ByVal Limit As Long = -1, _	Optional Compare As VbCompareMethod = _	vbBinaryCompare) As Variant		Dim Substrings() As String	Dim OneDelimiter As String	Dim I As Long		OneDelimiter = Mid$(Delimiters, 1, 1)	Substrings = Split(Expression, OneDelimiter, _		Limit, Compare)	For I = LBound(Substrings) To UBound(Substrings)		If Len(Substrings(I)) = 0 Then			Substrings(I) = OneDelimiter		End If	Next I	If Len(Delimiters) = 1 Then		CleanSplit2 = Filter( _			Substrings, OneDelimiter, False)	Else		CleanSplit2 = _			CleanSplit2(Join( _			Filter(Substrings, OneDelimiter, False), _			Mid$(Delimiters, 2, 1)), _			Mid$(Delimiters, 2), Limit, Compare)	End IfEnd Function

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Five Early Architecture Decisions That Quietly Get Expensive

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.