Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The use of Write method under VBS

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly explains "the use of Write method under VBS". The content of the article is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "the use of Write method under VBS".

Writes the specified string to the TextStream file.

Object.Write (string)

Parameter object

Required. Expected the name of the TextStream object.

String

Optional. The text to write to the file.

Description

The specified string is written to the file, with no spaces or characters inserted between the strings. Use the WriteLine method to write a new line character or a string ending with a new line character.

The following example illustrates how to use the Write method:

Function WriteToFile Const ForReading = 1, ForWriting = 2 Dim fso, f Set fso = CreateObject ("Scripting.FileSystemObject") Set f = fso.OpenTextFile ("c:\ testfile.txt", ForWriting, True) f.Write "Hi, hello!" Set f = fso.OpenTextFile ("c:\ testfile.txt", ForReading) WriteToFile = f.ReadLineEnd Function thank you for reading, the above is the content of "the use of Write method under VBS". After the study of this article, I believe you have a deeper understanding of the use of Write method under VBS, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report