Angenommen ich habe einen String
Hello world, today is not a good day
und möchte das "not" daraus entfernen wie mache ich das?
Hier hast du ein Beispiel dazu
@echo off setlocal SET "source=Hello world, today is not a good day" SET "target= not" call set result=%%source:%target%=%% echo %result%
@echo off setlocal enableDelayedExpansion set str=Hello world, today is not a good day. set str=%str:not =% echo %str%