Save string to a file : Text File Write « File Directory « VB.Net






Save string to a file

 

Imports System.IO
Imports System.Text

Module Example
   Public Sub Main()
      Dim rnd As New Random()
      Dim sb As New StringBuilder()
      Dim sw As New StreamWriter(".\StringFile.txt", False, Encoding.Unicode)

      For ctr As Integer = 0 To 1000
         sb.Append(ChrW(rnd.Next(1, &h0530))) 
         If sb.Length Mod 60 = 0 Then sb.AppendLine()          
      Next                    
      sw.Write(sb.ToString())
      sw.Close()
   End Sub
End Module

   
  








Related examples in the same category

1.Create Text FileCreate Text File
2.Append String to a Text file
3.Text file Reader and WriterText file Reader and Writer
4.Reading and Writing to Files
5.Write Text to a File
6.Write Text to a File
7.Write text line by line
8.Write Text to a File and read back
9.Open and Append to a Log File
10.Write UTF8 encoded string to a file
11.Create Text file and append string to it
12.Convert byte from a file to UTF8
13.Save character to a file