Sends a string to an output stream.
object.Write(strText) |
Arguments
- object
-
StdOut or StdErr text stream objects.
- strText
-
String value indicating the text you want to write to the stream.
Remarks
The StdIn, StdOut, and StdErr properties and methods work when running the script with the CScript.exe host executable file only. An "Invalid Handle" error is returned when run with WScript.exe. The position pointer moves to the point just beyond the last character in strText.
Example
The following code demonstrates the use of the Write method.
Visual Basic Script | Copy Code |
---|---|
Dim strInput strInput = WScript.StdIn.ReadAll WScript.StdOut.Write strInput |
JScript | Copy Code |
---|---|
var strInput = WScript.StdIn.ReadAll(); WScript.StdOut.Write(strInput); |