Jump to content

Recommended Posts

Posted

I have a problem with the StringSplit function:

I have this code:

$file = FileOpen("test1.txt", 0)

If $file = -1 Then
    MsgBox(0, "Error", "Unable to open file.")
    Exit
EndIf

While 1
    $line = FileReadLine($file)
    $array = StringSplit($line, ";")
    GUICtrlCreateListViewItem($array[1] & "|" & $array[2] & "|" & $array[3] & "|" & $array[4] & "|" & $array[5], $listview)
    If @error = -1 Then ExitLoop
Wend

FileClose($file)

And in my test1.txt is something like this:

value1;value2;value3;value4;value5

But if one of the value is empty like this:

value1;value2;;value4;value5

The script fails, because $array[3] will be empty, is there a solution to this???

Posted

I've tested so and it works fine:

$str = 'value1;value2;;value4;value5'
$aSplit = StringSplit($str, ';')
$sItem = ''
For $i = 1 To UBound($aSplit) -1
    $sItem &= $aSplit[$i] & '|'
Next
$sItem = StringTrimRight($sItem, 1)

GUICreate('')
$lv = GUICtrlCreateListView('  1  |  2  |  3  |  4  |  5  ', 10, 10, 250)
GUICtrlCreateListViewItem($sItem, $lv)
GUISetState()

Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE

Best Regards BugFix  

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...