Skip to content

Instantly share code, notes, and snippets.

@YHaruoka
Last active November 16, 2022 07:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YHaruoka/2b15a72d7a875e274e0c31d3b4957284 to your computer and use it in GitHub Desktop.
Save YHaruoka/2b15a72d7a875e274e0c31d3b4957284 to your computer and use it in GitHub Desktop.
@echo off
SET S=ABCDEFGHIJ
echo %S%
SET S=ABCDEFGHIJ
echo %S:~3%
SET S=ABCDEFGHIJ
echo %S:~0,5%
SET S=ABCDEFGHIJ
echo %S:~3,3%
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment