Not a Member Yet,
Click here to Register

ID: 442
Viewed: 3476
Added: Aug 19, 2002
Version:
Snippet uploaded by: snippet
Written By: Unknown
Demo: Sorry, no demo



User Rated at: 0 Stars
Rate This:

Thank you for your vote. Please wait...

It appears you already voted for this snippet

It appears your vote value was empty

This routine gets a string in the format

Item 1 | item 2 | item 3 | item 4 |

And returns an array of these items (the | is a pipe symbol)

Highlight all by clicking in box
<!---Declaration--->
none

Highlight All
<!---Code--->
Public Sub ListStrToArray(ByVal sOrigStr As String, ByRef sArray() As String, Optional lCols As Long, Optional lRows As Long)
Dim nRows As Long
Dim lPos As Long
Dim lPos2 As Long
Dim bOver As Boolean
Dim lTRowCount As Long
Dim lTColCount As Long
Dim nCols As Long

Dim lCount As Long

On Error GoTo vbErrorHandler

If lRows > 0 Then
nRows = lRows
Else
nRows = ItemCount(sOrigStr, "|")
End If

If lCols > 0 Then
nCols = lCols
Else
nCols = 1
End If

ReDim sArray(nCols, nRows)

lPos = 0
lCount = 0
lTRowCount = 1
lTColCount = 1

Do
lPos2 = InStr(lPos + 1, sOrigStr, "|")

If lPos2 = 0 And lPos = 0 Then
lCount = 1
Exit Do
Else
If lPos2 = 0 Then
If Mid$(sOrigStr, lPos + 1, 1) <> "" Then
lCount = lCount + 1
lPos2 = Len(sOrigStr) + 1
sArray(lTColCount, lTRowCount) = Mid$(sOrigStr, lPos + 1, lPos2 - lPos - 1)
Exit Do
Else
Exit Do
End If

Else
sArray(lTColCount, lTRowCount) = Mid$(sOrigStr, lPos + 1, lPos2 - lPos - 1)
'lTRowCount = lTRowCount + 1
lTColCount = lTColCount + 1
If lTColCount > nCols Then
lTColCount = 1
lTRowCount = lTRowCount + 1
End If
End If
End If

lCount = lCount + 1
lPos = lPos2
Loop

Exit Sub

vbErrorHandler:
Err.Raise Err.Number, "StrHandler.ListStrToArray", Err.Description
End Sub;


No Comments to show

Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.


Replying to a Comment...


Adding your comment. Please wait...

Thanks for adding your comment!. After further review it will be added.

There was a problem adding your comment. Please try again.

Please complete all the fields in the form before sending.

© 2002 - 2024 snippetlibrary.com All Rights Reserved. Conditions
Do NOT follow this link or you will be banned from the site!