%~n0
ดีเพียงได้รับชื่อไฟล์ของชุดของคุณวิธีที่ง่ายที่สุดที่จะใช้เพียงแค่
@echo %~n0
จะเอาท์พุทชื่อ (โดยไม่มีนามสกุล) ของไฟล์แบตช์ที่กำลังทำงานอยู่ (เว้นแต่จะถูกเรียกใช้งานในรูทีนย่อยที่เรียกโดยcall
) รายการที่สมบูรณ์ของการแทนที่ "พิเศษ" ดังกล่าวสำหรับชื่อพา ธ สามารถพบได้help for
ที่ส่วนท้ายสุดของความช่วยเหลือ:
นอกจากนี้การทดแทนการอ้างอิงตัวแปรได้รับการปรับปรุง ตอนนี้คุณสามารถใช้ไวยากรณ์เพิ่มเติมดังต่อไปนี้:
%~I - expands %I removing any surrounding quotes (")
%~fI - expands %I to a fully qualified path name
%~dI - expands %I to a drive letter only
%~pI - expands %I to a path only
%~nI - expands %I to a file name only
%~xI - expands %I to a file extension only
%~sI - expanded path contains short names only
%~aI - expands %I to file attributes of file
%~tI - expands %I to date/time of file
%~zI - expands %I to size of file
%~$PATH:I - searches the directories listed in the PATH
environment variable and expands %I to the
fully qualified name of the first one found.
If the environment variable name is not
defined or the file is not found by the
search, then this modifier expands to the
empty string
ตัวดัดแปลงสามารถรวมกันเพื่อให้ได้ผลลัพธ์แบบผสม:
%~dpI - expands %I to a drive letter and path only
%~nxI - expands %I to a file name and extension only
%~fsI - expands %I to a full path name with short names only
อย่างไรก็ตามเพื่อตอบคำถามของคุณอย่างแม่นยำ: มีการใช้วัสดุพิมพ์:~start,length
:
%var:~10,5%
จะดึง 5 ตัวละครจาก 10 %var%
ตำแหน่งในตัวแปรสภาพแวดล้อม
หมายเหตุ:ดัชนีของสตริงเป็นศูนย์ดังนั้นตัวอักษรตัวแรกอยู่ที่ตำแหน่ง 0, ที่สองที่ 1, ฯลฯ
ที่จะได้รับสตริงของตัวแปรอาร์กิวเมนต์เช่น%0
, %1
ฯลฯ คุณจะต้องกำหนดให้กับตัวแปรสภาพแวดล้อมปกติใช้set
ครั้งแรก:
:: Does not work:
@echo %1:~10,5
:: Assign argument to local variable first:
set var=%1
@echo %var:~10,5%
ไวยากรณ์มีประสิทธิภาพยิ่งขึ้น:
%var:~-7%
แยก 7 อักขระสุดท้ายจาก %var%
%var:~0,-4%
จะแยกอักขระทั้งหมดยกเว้นสี่ตัวสุดท้ายซึ่งจะกำจัดนามสกุลไฟล์ของคุณด้วย (สมมติว่ามีอักขระสามตัวหลังจากช่วงเวลา [ .
])
ดูhelp set
รายละเอียดเกี่ยวกับไวยากรณ์
setlocal ENABLEDELAYEDEXPANSION \r\n for /f %%s in ('set') do ( \r\n set tmp=%%s \r\n echo !tmp:~-3! \r\n )