I am confused.
I have a String like this:
Info1||||Info2||||Info3||||Info4
I have an Array like this:
Local $InfoParts[3]
And I like to split my string by |||| in the array. So Every Array Element gets the next part. Like this:
$InfoParts[0] = "Info1"
$InfoParts[1] = "Info2"
$InfoParts[2] = "Info3"
$InfoParts[3] = "Info4"
But it won't work. I triedĀ StringSplit but how can I put them In a new element?