Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

SplitWithQualifiers - An improved version of the Split function
[ All Languages » VB »  String]

Total Hit ( 2209)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 



Click here to copy the following block
' A variant of the Split function, that offers the following improvements
'  You can pass text qualifier as the third argument and optionally specify
'  to treat consecutive occurrences of delimiters as one
'  For example, the following source text contains comma inside one of the
' fields, so the
'  regular Split function will parse it incorrectly:
'  "Bayazitov","Ernest","2500 Data Drive, 100A, Sacramento, CA 95630",,,,10,,2,
' ,,
'  Also, it has some empty fields, which do not have any values or text
' qualifiers.
'  In this case, we need to specify comma as delimiter and double quote
' character As Text
'  qualifier, and do not treat consecutive occurrences of delimiters as one
'
'  Usage:
'  Dim res() As String
'  res() = SplitWithQualifiers("""Bayazitov"",""Ernest"",""2500 Data Drive,
' 100A, Sacramento, CA 95630"",,,,10,,2,,,", ",", """", False)

Public Function SplitWithQualifiers(ByVal SourceText As String, _
  ByVal TextDelimiter As String, ByVal TextQualifier As String, _
  Optional ByVal TreatMultipleDelimitersAsOne As Boolean) As String()
  Dim strTemp() As String, strRes() As String, I As Long, J As Long, _
    A As strng, B As String, blnStart As Boolean

  If TreatMultipleDelimitersAsOne Then
    Do While (InStr(1, SourceText, TextDelimiter & TextDelimiter) And (I < _
      100))
      SourceText = Replace(SourceText, TextDelimiter & TextDelimiter, _
        TextDelimiter)
      I = I + 1
    Loop
  End If
  If TextDelimiter <> " " Then SourceText = Trim$(SourceText)
  strTemp() = Split(SourceText, TextDelimiter)
  For I = 0 To UBound(strTemp)
    J = InStr(1, strTemp(I), TextQualifier, vbTextCompare)
    If J Then
      A = Replace(strTemp(I), TextQualifier, "")
      Select Case strTemp(I)
        Case TextQualifier & A & TextQualifier ' "xxx"
          B = B & A & vbCrLf
          blnStart = False
        Case TextQualifier & A   '  "xxx
          B = B & A & TextDelimiter
          blnStart = True
        Case A    ' xxx
          B = B & A & TextDelimiter
          blnStart = False
        Case A & TextQualifier  '  xxx"
          B = B & A & vbCrLf
          blnStart = False
      End Select
    Else
      If blnStart Then
        B = B & strTemp(I) & TextDelimiter
      Else
        B = B & strTemp(I) & vbCrLf
      End If
    End If
  Next I
  If B <> "" Then
    B = Left$(B, Len(B) - 2)
    strRes() = Split(B, vbCrLf)
  Else
    ReDim strRes(0)
    strRes(0) = SourceText
  End If
  SplitWithQualifiers = strRes()
End Function


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.