Search found 1 match
- 15 Oct 2017 10:45
- Forum: DOS Batch Forum
- Topic: Removing spaces from a variable in batch
- Replies: 1
- Views: 16340
Removing spaces from a variable in batch
Hi, I write new function for removing spaces from a variable in batch. Maybe there are proposals or remarks? @ECHO OFF CALL :Trim " Spaces between words " Result CALL :Trim "No_space" Result CALL :Trim "Right space " Result CALL :Trim " Left space" Result CALL...