Copy Code code as follows:
@echo off
:: Reverse-order display input, can handle the number + letter (case sensitive) + symbolic format of the mixed input
:: Case-sensitive
:: Slightly modified, you can implement the enumeration of passwords?
:: Characters that cannot be processed:
:: Pipe Symbols: |
:: Redirect Symbols:<, >
:: Connection Symbol:&
:: Off-word or escape symbol:%, ^
:: Other symbols:?, *,), =,;, "
:: Code by JM 2006-9-7 CMD@XP
Cls
Set input=
set/p input= Please enter a string
Set output=
If not "%input%" = "" Set input=%input%
: Loop
For%%i in (0 1 2 3 4 5 6 7 8 9 a B c D e F g h i j k l m n o p q R S t u v w x y z a b c d e F g h i j k l m n o p Q R S T U V W X Y Z ' ~! @ # $ ^ (-+./\ [] {}: ') do (
(If%input:~-1% equ%%i set output=%output%%%i) &&set input=%input:~0,-1%
)
If not "%input%" = "Goto:loop"
Echo Reverse-order display input, the result is%output%
Pause