2024-11-08 07:17

Windows Batch Script : substring

Windows Batch Script : substring
SET "_test=123456789abcdef0"
::처음 5글자
SET "_result=%_test:~0,5%"
ECHO %_result% =123...
DevOps
000

댓글