Notepad++ Werte filtern?

1 Antwort

Vom Fragesteller als hilfreich ausgezeichnet

Ein Fall für eine kleine Batch.

Demo.cmd

@echo off
(for /f "usebackq tokens=1,2" %%a in ("input.txt") do @(
    echo %%a %%b
))>"output.txt"
  • speichere deine Zahlenliste als Input.txt ins gleiche Verzeichnis wie die Batch
  • führe die Batch aus (doppelklick)
  • öffne output.txt
Woher ich das weiß:eigene Erfahrung – Ich mach das seit 30 Jahren