批处理提取指定字符后的内容?

2025-04-14 03:16:42
推荐回答(1个)
回答1:

@echo off
for /f "tokens=2 delims=:" %%i in ('find /i "姓名" a.txt') do echo %%i | clip
pause>nul