What do you call this in batch file scripting ? %VARIABLE:~2%
So I'm trying to figure what this is specifically called when you set a variable, then select a position from that variable?
Example
SET TEST=FOO BAR 123
SET VAR=%TEST:~4,3%
And if I echo %VAR% I know it will return "BAR", but I have no idea what this is called, I just had to figure it out on my own by changing the values and checking what it returned.
Thank you.