Search found 2 matches
- 01 Jun 2018 11:06
- Forum: DOS Batch Forum
- Topic: Help with substring removal
- Replies: 2
- Views: 3185
Re: Help with substring removal
That worked, thank you for the quick help sst!
- 01 Jun 2018 09:43
- Forum: DOS Batch Forum
- Topic: Help with substring removal
- Replies: 2
- Views: 3185
Help with substring removal
Hi. I'm trying to remove a substring " - DASH" from a string but for some reason it's not working. What am I missing here? Thanks for the help! It's supposed to turn "test - DASH.ogg" into "z-test.mkv". for %%A in (*DASH*.ogg) do ( set outfile=z-%%~nA.mkv echo %outfile% set outfile=%outfile: - DASH=...