Reverse Sequence display input content batch _dos/bat

Source: Internet
Author: User
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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.