- Joined
- Sep 13, 2019
- Messages
- 12
- Reaction score
- 1
Hello, I have made a intergration with 3cx in a batch file to open a new window with a specified url.
The number is filled in correctly
My %1 variable contains a number of the caller, but it also contains a + before the number.
How am I able to remove this + from the number variable in a batch file?
The number is filled in correctly
Code:
@echo off
start "Chrome" chrome --app=https://mywebsite.com?number=%1
My %1 variable contains a number of the caller, but it also contains a + before the number.
How am I able to remove this + from the number variable in a batch file?