Share some tips for using DOS batch commands (intercepting strings) _dos/bat

Source: Internet
Author: User
Intercept string:
Set var=10203040
The first digit is the position, the second position is the length, the second position if none, the default is the end, and the first position if it is a negative number, then the position in the opposite direction. Position starting from 0

Copy Code code as follows:

Echo%var:~-4,3%
Echo%var:~0%
Echo%var:~1%
Echo%var:~-2%


Replace string
Copy Code code as follows:

echo%var:0=kkk% 0 replaced by KKK
Echo%var:10=kkk% 10 replaced by KKK
Echo%var:20=kkk%
Echo%var:*20=kkk% 20 includes 20 strings replaced by KKK


In this way, you can execute multiple commands at the same time, regardless of whether the command was executed successfully
Dir c:\*.exe & dir d:\*.exe & dir e:\*.exe

&& Usage: First command && second command [&& Third Order ...]
The following command is not executed when a command is encountered that executes the error, and all commands are executed if there is no error;


|| Usage: first Command | | The second command [| | | The Third order ...]
The following command is not executed when the correct command is encountered, and all commands are executed if the correct command is not present;

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.