Modify ↓
Opened 5 years ago
Closed 5 years ago
#3749 closed Bug (Wont Fix)
Example in help file is wrong (StdoutRead)
Reported by: | anonymous | Owned by: | |
---|---|---|---|
Milestone: | Component: | Documentation | |
Version: | 3.3.14.5 | Severity: | None |
Keywords: | Help File | Cc: |
Description
The example in the help file page for StdoutRead has two lines that I think need corrected.
This is the two lines, followed by how I think they should be corrected:
; Use StringSplit to split the output of StdoutRead to an array. All carriage returns (@CRLF) are stripped and @CRLF (line feed) is used as the delimiter. Local $aArray = StringSplit(StringTrimRight(StringStripCR($sOutput), StringLen(@CRLF)), @CRLF) ; Use StringSplit to split the output of StdoutRead to an array. All carriage returns (@CR) are stripped and @LF (line feed) is used as the delimiter. Local $aArray = StringSplit(StringStripCR($sOutput), @LF)
Attachments (0)
Change History (1)
comment:1 Changed 5 years ago by Jpm
- Resolution set to Wont Fix
- Status changed from new to closed
Guidelines for posting comments:
- You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
- In-depth discussions should take place on the forum.
For more information see the full version of the ticket guidelines here.
Note: See
TracTickets for help on using
tickets.
Hi,
At least Under french Windows 10 your proposal is adding an empty last line.