鼠标迷宫批处理文件

问题描述

编辑: 具体问题:如何将特定变量设置为文本文件中的特定行? 到目前为止,我所拥有的是:

set line=0
setlocal EnableDelayedExpansion
set "cmd=findstr /r /n "^^" testCode.txt | find /C ":""
for /f %%A in ('!cmd!') do set subsets=%%A
endlocal
:a
for /f "skip=%line% delims=" %%A in (testCode.txt) do set output=%%A
set /a line+=1
echo %Line%: %output%
if %line%==%subsets% goto :b
goto:a
:b
echo.
pause

因此,如果我的文本文档 testCode.txt 中有三行,则如下所示:

Red
Green
Blue

我希望它们像这样打印到我的批处理文件中:

1: Red
2: Green
3: Blue

到目前为止,它是这样打印的:

  delims=" was unexpected at this time.
1: 
2: Blue
3: Blue

解决方法

在我看来,您实际上打算做的不仅仅是打印每个源文件行,并在其行号前加上行号,否则您只需要:

%SystemRoot%\System32\findstr.exe /N "^" "testCode.txt"

输出:

1:Red
2:Green
3:Blue

因此,以下是rem一个显示结构和方法的示例,我认为您打算将其合并到您的实际打印任务中:

1: Red
2: Green
3: Blue

然后要求最终用户从该列表中进行选择,只输入行号,并定义一个变量,以便在脚本中进一步使用,包含该行的内容:

@Echo Off
SetLocal EnableExtensions DisableDelayedExpansion

Rem Define a variable for the intended source file.
Set "SourceFile=%~dp0testCode.txt"

Rem Exit script if the source file does not exist.
If Not Exist "%SourceFile%" Exit /B

Rem Undefine any existing variables with names beginning Line[
For /F "Delims==" %%G In ('Set Line[ 2^>NUL') Do Set "%%G="

Rem Define individual variables Line[n],where n is their line number,Rem  and print the line number followed by a colon,space and line content.
For /F "Tokens=1,* Delims=:" %%G In ('%SystemRoot%\System32\findstr.exe /N "^"
 "testCode.txt"') Do Set "Line[%%G]=%%H" & Echo %%G: %%H

Rem Exit the script if no line existed in the source file.
If Not Defined Line[1] Exit /B
 
Rem Assumption that the end user will need to select an entry via menu option.
:Selection
Echo(
Set "UserSelection="
Set /P "UserSelection=Enter the number for your selection>"
Set "UserSelection=%UserSelection:"=%"
(Set Line[%UserSelection%]) 2>NUL | %SystemRoot%\System32\findstr.exe /B /L^
 "Line[%UserSelection%]=" 1>NUL || GoTo Selection

Rem Re-define the user selection variable to the line content.
SetLocal EnableDelayedExpansion
For %%G In ("!Line[%UserSelection%]!") Do EndLocal & Set "UserSelection=%%~G"

Rem Print the chosen line content.
Echo(
Echo You Selected %UserSelection%

Rem For demonstration purposes only,delay the script before exiting.
%SystemRoot%\System32\timeout.exe /T 5 /NoBreak 1>NUL
Exit /B

该代码旨在防止代码在最终用户输入定义的行号之一之前继续运行,CTRL+C 除外) .

您会注意到源文件位置,在行 5 使用 %~dp0 来引用保存正在运行的批处理文件的目录的路径。如果您的源文件不在那里,请改用其绝对路径。

或者,您应该从一开始就在批处理文件中定义当前目录,然后可以选择始终使用相对路径:

示例:

@Echo Off
SetLocal EnableExtensions DisableDelayedExpansion

Rem Define the current working directory,and exit if it does not exist.
CD /D "W:\orking\directory" 2>NUL || Exit /B

Rem Define a variable for the intended source file.
Set "SourceFile=testCode.txt"

Rem Exit script if the source file does not exist.
If Not Exist "%SourceFile%" Exit /B

…

最后一点,对于 %SystemRoot%\Sytem32\.exe 实用程序,我使用了 FindStr,并包含了 Timeout 扩展名。这是故意防止依赖脚本必须搜索 %Path%%PATHEXT% 环境变量,(至少其中之一,经常被用户不明智地认为他们应该修改他们,并且这样做是错误的)

,
@Query("select u from user where status=1");
List<User> findUser();

应该对你有用[未经测试,但这就是我要编码的]

:a if %line%==0 (SET "skipcmd=") else (set :skipcmd=skip=%line%") set "output=" for /f "skip=%skipcmd% delims=" %%A in (testCode.txt) do if not defined output set "output=%%A" 作为 "skip=0" 选项无效,因此如果 skip 的值为 0,则将 skipcmd 设置为空,否则将 line 设置为文字 { {1}} 或其他。

skipcmd 设置为 nothing 将意味着 skip=3 未定义。

因此,在跳过适当数量的行后,将跳过测试 output%%Aoutputoutputis "output" defined is applied,and on the *first* occasion this is true,so the value of outputis assigned toset` 剩余的每个文件的行。

. 

也可能会起作用,当遇到第一个选定的行时退出 is now defined,so the 循环,但在 :a if %line%==0 (SET "skipcmd=") else (set :skipcmd=skip=%line%") for /f "skip=%skipcmd% delims=" %%A in (testCode.txt) do set "output=%%A"&goto outputset :outputset (带括号的一系列行)中不起作用,因为在 a 中不允许使用标签for

提示:使用 code block 设置值 - 这可以避免由尾随空格引起的问题。在比较中,使用 code-block 可以避免 set "var1=data" 中的空格引起的问题。