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

Hi,

hab neulich ne kleine Anwendung geschrieben, die eine .txt File einließt und in umgekehrter Reihenfolge wieder ausgibt.

Also:

1, 2, 3, 4

kommt rein

4, 3, 2, 1

geht wieder raus.

Das ganze als Vorbereitungsprogramm für ein weiteres Programm, welches die Daten dann verarbeitet (nicht mein Einfluss).

Jetzt trat leider ein Problem auf, weil es bei einem Zeichen "½" ein Problem gibt, dass er das nicht richtig umwandelt.

Kenne mich aber mit encoding zu wenig aus, als dass ich das so ohne weiteres beheben könnte. Hilfe wäre also cool :)

Beispielcode:

Input:

 string line;

                StreamReader reader = new StreamReader(loadfrom, Encoding.Unicode);

                while ((line = reader.ReadLine()) != null)

                {

                    fields = line.Split(new char[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries); 

                    data.Add(fields[0].ToString());

                    myArray.Add(fields);

                }
Output:
 StreamWriter writer = new StreamWriter(saveto, false, Encoding.Unicode);

            {

                while (i >= 0)                

                {

                    writer.WriteLine(data[i].ToString());

                    Console.WriteLine("Schreibe Satz " + durchgang + " von " + maxdurchlaeufe.ToString());

                    durchgang++;

                    i--;

                }

            }

Danke für die Hilfe :)

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.