I have a file which contains values like below
10AB2CDEFG12345
10AB5CDEFG894567
From the above I want only the 4 characters(alphanumeric) after 10 which in the above case is
AB2C and AB5C.
Doing it for a set value like
set tmp=10AB2CDEFG12345
@echo %tmp:~2%
gives me AB2CDEFG12345