Write# Statement

Writes data to a sequential text file with delimiting characters.

tip

Use Print# statement to print data to a sequential text file. Use Put# statement to write data to a binary or a random file.


Syntax:

Write Statement diagram

Write [#fileNum] {,|;} expression [, …]

Parameters:

fileNum: Any numeric expression that contains the file number that was set by the Open statement for the respective file.

expression list: Variables or expressions that you want to enter in a file, separated by commas.

표현식 목록이 생략된 경우 Write 문은 파일에 빈 줄을 추가합니다.

식 목록을 새 파일이나 기존 파일에 추가하려면 파일을 Output 또는 Append 모드로 열어야 합니다.

작성하는 문자열은 따옴표로 묶이고 쉼표로 구분됩니다. 표현식 목록에 이 구분 기호를 입력할 필요는 없습니다.

Write 문에는 마지막 항목으로 줄 끝 기호가 출력됩니다.

소수점을 갖는 수는 국가별 설정에 따라 변환됩니다.

Example:

Sub ExampleWrite
    Dim iCount As Integer
    Dim sValue As String
    iCount = Freefile
    Open "~/data.txt" For Output As iCount
    sValue = "Hamburg"
    Write #iCount,sValue,200
    sValue = "New York"
    Write #iCount,sValue,300
    sValue = "Miami"
    Write #iCount,sValue,450
    Close #iCount
End Sub

Please support us!