标签: batch-file
str =“这是行尾” 如何在上面的字符串融合批处理脚本中搜索最后一个单词“line”。
答案 0 :(得分:1)
试试这个:
@echo off &setlocal for %%i in (The is the end of line) do set "TheEnd=%%i" echo(%TheEnd%