Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Empfohlene Antworten

Veröffentlicht

Huhu,

ich suche einen Code-schnippsel, der wie z.B. das Search and Replace beim Editor funktioniert.

Es soll nach < bzw. > gesucht werden und durch < bzw > ersetz werden. Beispiel:

<Header>

zu:

<Header>

C#-Skript, Consolen-Anwendung, Nachricht in String lesen, und dann aktionen ausführen.

Hat wer gerade soetwas zur hand? :)

Danke und liebe Grüße,

Setoy

Edit: Habe was :)


using System;

using System.IO;

using System.Text.RegularExpressions;


/// <summary>

/// Replaces text in a file.

/// </summary>

/// <param name="filePath">Path of the text file.</param>

/// <param name="searchText">Text to search for.</param>

/// <param name="replaceText">Text to replace the search text.</param>

static public void ReplaceInFile( string filePath, string searchText, string replaceText )

{

    StreamReader reader = new StreamReader( filePath );

    string content = reader.ReadToEnd();

    reader.Close();


    content = Regex.Replace( content, searchText, replaceText );


    StreamWriter writer = new StreamWriter( filePath );

    writer.Write( content );

    writer.Close();

}

Bearbeitet von SeToY

Auch wenns nicht wichtig ist:

mach n using um die Reader und Writer, dispose sie am ende, oder mach ähnliches. (Wobei ich mir ehrlich gesagt nicht sicher bin, ob man das in statischen Methoden auch tun muss, aber andrerseits, warum nicht)

vllt, noch n try/catch/finally drum, in dem du die Verfügbarkeit deiner Dateien prüfst (im finally dann Closen und disposen)

Falls du das ganze jedoch "nur für dich" brauchst, reichts wahrscheinlich so wie es ist, du weißt ja was du tust^^

gruß

Aus Performance-Gründen würde ich das ganze Zeilenweise einlesen, so dass nicht der ganze Stream auf einmal in den Speicher wandert. (sofern du immer nur kleine Dateien hast geht´s natürlich...)

Gruß,

Honky

Erstelle ein Konto oder melde dich an, um einen Kommentar zu schreiben.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.