Školení
Modul
Základní formátování řetězců v jazyce C# - Training
Zkombinujte textová data literálu a proměnné, která obsahují speciální znaky, formátování a Unicode, do smysluplných zpráv pro koncového uživatele.
Tento prohlížeč se už nepodporuje.
Upgradujte na Microsoft Edge, abyste mohli využívat nejnovější funkce, aktualizace zabezpečení a technickou podporu.
Následující příklady kódu zapisuje znaky synchronně nebo asynchronně z pole znaků do řetězce.
Následující příklad používá k zápisu StringWriter pěti znaků synchronně do objektu StringBuilder .
using System;
using System.IO;
using System.Text;
public class CharsToStr
{
public static void Main()
{
StringBuilder sb = new StringBuilder("Start with a string and add from ");
char[] b = { 'c', 'h', 'a', 'r', '.', ' ', 'B', 'u', 't', ' ', 'n', 'o', 't', ' ', 'a', 'l', 'l' };
using (StringWriter sw = new StringWriter(sb))
{
// Write five characters from the array into the StringBuilder.
sw.Write(b, 0, 5);
Console.WriteLine(sb);
}
}
}
// The example has the following output:
//
// Start with a string and add from char.
Imports System.IO
Imports System.Text
Public Class CharsToStr
Public Shared Sub Main()
Dim sb As New StringBuilder("Start with a string and add from ")
Dim b() As Char = {"c", "h", "a", "r", ".", " ", "B", "u", "t", " ", "n", "o", "t", " ", "a", "l", "l"}
Using sw As StringWriter = New StringWriter(sb)
' Write five characters from the array into the StringBuilder.
sw.Write(b, 0, 5)
Console.WriteLine(sb)
End Using
End Sub
End Class
' The example has the following output:
'
' Start with a string and add from char.
Dalším příkladem je kód aplikace WPF. Při načtení okna příklad asynchronně čte všechny znaky z TextBox ovládacího prvku a ukládá je do pole. Potom asynchronně zapíše každé písmeno nebo prázdný znak na samostatný řádek TextBlock ovládacího prvku.
using System;
using System.Text;
using System.Windows;
using System.IO;
namespace StringReaderWriter
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private async void Window_Loaded(object sender, RoutedEventArgs e)
{
char[] charsRead = new char[UserInput.Text.Length];
using (StringReader reader = new StringReader(UserInput.Text))
{
await reader.ReadAsync(charsRead, 0, UserInput.Text.Length);
}
StringBuilder reformattedText = new StringBuilder();
using (StringWriter writer = new StringWriter(reformattedText))
{
foreach (char c in charsRead)
{
if (char.IsLetter(c) || char.IsWhiteSpace(c))
{
await writer.WriteLineAsync(char.ToLower(c));
}
}
}
Result.Text = reformattedText.ToString();
}
}
}
Imports System.IO
Imports System.Text
''' <summary>
''' Interaction logic for MainWindow.xaml
''' </summary>
Partial Public Class MainWindow
Inherits Window
Public Sub New()
InitializeComponent()
End Sub
Private Async Sub Window_Loaded(sender As Object, e As RoutedEventArgs)
Dim charsRead As Char() = New Char(UserInput.Text.Length) {}
Using reader As StringReader = New StringReader(UserInput.Text)
Await reader.ReadAsync(charsRead, 0, UserInput.Text.Length)
End Using
Dim reformattedText As StringBuilder = New StringBuilder()
Using writer As StringWriter = New StringWriter(reformattedText)
For Each c As Char In charsRead
If Char.IsLetter(c) Or Char.IsWhiteSpace(c) Then
Await writer.WriteLineAsync(Char.ToLower(c))
End If
Next
End Using
Result.Text = reformattedText.ToString()
End Sub
End Class
Zpětná vazba k produktu .NET
.NET je open source projekt. Vyberte odkaz pro poskytnutí zpětné vazby:
Školení
Modul
Základní formátování řetězců v jazyce C# - Training
Zkombinujte textová data literálu a proměnné, která obsahují speciální znaky, formátování a Unicode, do smysluplných zpráv pro koncového uživatele.
Dokumentace
Postupy: Čtení znaků z řetězce - .NET
Naučte se číst znaky z řetězce v .NET. Podívejte se na příklady synchronního a asynchronního čtení znaků.
Postupy: Zápis textu do souboru - .NET
Naučte se psát nebo připojovat text k souboru pro aplikaci .NET. Použijte metody z Třídy StreamWriter nebo File k synchronnímu nebo asynchronnímu zápisu textu.
Postupy: Čtení a zápis do nově vytvořeného datového souboru - .NET
Naučte se číst a zapisovat do nově vytvořeného datového souboru v .NET pomocí třídy System.IO.BinaryReader a System.IO.BinaryWriter.
V tomto článku se dozvíte, jak číst text synchronně nebo asynchronně z textového souboru pomocí třídy StreamReader v .NET pro desktopové aplikace.