Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to implement batch processing in which the next line of numbers is copied after the previous line and separated by spaces

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

I would like to share with you how to copy the next line of numbers to the front line and separate the batch with spaces. I hope you will get something after reading this article. Let's discuss it together.

I want to put a text in the following form:

twenty-five

sixty-nine

eighty-nine

ninety-nine

one hundred and twenty

To be processed in the following form:

25 69

69 89

89 99

99 120

In other words, copy the numbers of the next line to the end of the previous line and separate them with spaces. I wonder if dos can do it? Please also ask the master for advice!

The code is as follows:

@ echo off

Copy the numbers of the next line to the back of the previous line and separate them with spaces

Setlocal enabledelayedexpansion

For / f% I in (test.txt) do (

Set / a count+=1

Set firstborn second!

Set second=%%i

If! count! Gtr 1 echo! first!! second!

)

Pause

After reading this article, I believe you have a certain understanding of "how to copy the next line of numbers to the front line and separate the batch with spaces". If you want to know more about it, you are welcome to follow the industry information channel. thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report