Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
除了我想限制用户输入任何空格键之外,我使用以下内容可以很好地满足我的需求,我该怎么做?
SET /P GET_ADMIN_PASSWORD_MISSMATCH_OPTION= Selection:
您不能限制他们批量按空格,但是您可以在他们输入内容后摆脱空格
set /p GET_ADMIN_PASSWORD_MISSMATCH_OPTION=Selection: set GET_ADMIN_PASSWORD_MISSMATCH_OPTION=%GET_ADMIN_PASSWORD_MISSMATCH_OPTION: =%
我还建议使用较短的变量名!:)