Modify ↓
Opened 18 years ago
Closed 18 years ago
#113 closed Bug (No Bug)
_ArrayDelete(StringSplit,..)
| Reported by: | anonymous | Owned by: | |
|---|---|---|---|
| Milestone: | Component: | AutoIt | |
| Version: | 3.2.10.0 | Severity: | |
| Keywords: | _ArrayDelete, StringSplit | Cc: |
Description
Compiler issue:
StringSplit returns an array, but _ArrayDelete does not recognize it.
$aStack = _ArrayDelete(StringSplit(StringMid($sStack,2),$sDelim,1),0)
PS. Probably applies to other _Array functions also.
Attachments (0)
Note:
See TracTickets
for help on using tickets.

This is not a bug. The _Array functions take the array by reference, not by value. That means you must pass a variable. The documentation in the beta version appears to correctly show you must pass ByRef so I'm resolving this as no bug.