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

Split2 - A Split variant that parses multiple lines of text
[ All Languages » VB »  String]

Total Hit ( 1707)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 



Click here to copy the following block
' A Split variant that parses a string that contains
' row and column separators, and returns a 2-dimensional array
'
' the result String array has a number of columns equal
' to the highest number of fields in individual text lines

Function Split2(ByVal Text As String, Optional ByVal RowSeparator As String = _
  vbCrLf, Optional ByVal ColSeparator As String = ",") As String()
  Dim lines() As String
  Dim cols() As String
  Dim r As Long
  Dim c As Long
  
  ' first, split the string in lines
  lines() = Split(Text, RowSeparator)
  ' initialize the result array
  ' start with just one column
  ReDim res(UBound(lines), 0) As String
  
  ' parse each line of text
  For r = 0 To UBound(lines)
    cols() = Split(lines(r), ColSeparator)
    
    ' resize the result array if necessary
    If UBound(cols) > UBound(res, 2) Then
      ReDim Preserve res(UBound(lines), UBound(cols)) As String
    End If
    ' copy the individual values
    For c = 0 To UBound(cols)
      res(r, c) = cols(c)
    Next
  Next
    
  Split2 = res()
  
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.