For method of extracting the entire line of text

Source: Internet
Author: User
Tags eol

This is usually the case when we need to extract the entire line of text. CopyCodeThe Code is as follows: For/F "delims =" % A in (a.txt) Do echo. %

But the rows starting with a semicolon will also be ignored by for. Many times we need these rows. What should we do.
Using External commands such as findstr is too troublesome. It is a good method to ignore an invisible character with EOL, but the line starting with a character is always ignored, it is also troublesome to obtain this invisible character.
In fact, there is a simpler way to put EOL at the end.Copy codeThe Code is as follows: @ echo off
Rem extracts all rows, which can be used together with tokens, but cannot be separated by spaces.
For/F "delims = EOL =" % A in (a.txt) Do echo. %
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.