Condividi tramite


Procedura: scrivere caratteri in una stringa

Aggiornamento: novembre 2007

Il codice dell'esempio che segue scrive in una stringa esistente un determinato numero di caratteri contenuti in una matrice di caratteri, a partire da un punto specifico della matrice. A tale scopo, viene utilizzato StringWriter.

Esempio

Option Explicit On 
Option Strict On
Imports System
Imports System.IO
Imports System.Text
Public Class CharsToStr
    Public Shared Sub Main()
        ' Create an instance of StringBuilder that can then be modified.
        Dim sb As New StringBuilder("Some number of characters")
        ' Define and create an instance of a character array from which 
        ' characters will be read into the StringBuilder.
        Dim b As Char() = {" "c, "t"c, "o"c, " "c, "w"c, "r"c, "i"c, "t"c, "e"c, " "c, "t"c, "o"c, "."c}
        ' Create an instance of StringWriter 
        ' and attach it to the StringBuilder.
        Dim sw As New StringWriter(sb)
        ' Write three characters from the array into the StringBuilder.
        sw.Write(b, 0, 3)
        ' Display the output.
        Console.WriteLine(sb)
        ' Close the StringWriter.
        sw.Close()
    End Sub
End Class
using System;
using System.IO;
using System.Text;

public class CharsToStr
{
    public static void Main(String[] args)
    {
        // Create an instance of StringBuilder that can then be modified.
        StringBuilder sb = new StringBuilder("Some number of characters");
        // Define and create an instance of a character array from which 
        // characters will be read into the StringBuilder.
        char[] b = {' ','t','o',' ','w','r','i','t','e',' ','t','o','.'};
        // Create an instance of StringWriter 
        // and attach it to the StringBuilder.
        StringWriter sw = new StringWriter(sb);
        // Write three characters from the array into the StringBuilder.
        sw.Write(b, 0, 3);
        // Display the output.
        Console.WriteLine(sb);
        // Close the StringWriter.
        sw.Close();
    }
}

Programmazione efficiente

Nell'esempio viene illustrato come utilizzare un oggetto StringBuilder per modificare una stringa esistente. Notare che in tal caso è necessaria un'ulteriore dichiarazione using, in quanto la classe StringBuilder è un membro dello spazio dei nomi System.Text. Anziché definire una stringa e convertirla in una matrice di caratteri, in questo esempio viene inoltre creata direttamente e inizializzata una matrice di caratteri.

Il codice produce il seguente output:

Some number of characters to

Vedere anche

Attività

Procedura: creare una visualizzazione directory

Procedura: leggere e scrivere su un file di dati appena creato

Procedura: aprire e accodare un file di log

Procedura: leggere testo da un file

Procedura: scrivere testo su un file

Procedura: leggere caratteri da una stringa

Concetti

I/O di file di base

Riferimenti

StringWriter

StringWriter.Write

StringBuilder