1.

Solve : Converting a numbered list into paragraph form automatically?

Answer»

I have made a LONG list that I want to quickly CONVERT to one long PARAGRAPH instantly because it would take to long other WISE. Can you help me out?!list is in list.txt

try this

Code: [Select]@echo off
setlocal enabledelayedexpansion
set paragraph=
for /f "delims==" %%L in ('type list.txt') do (
set paragraph=!paragraph! %%L
)
echo %paragraph%>paragraph.txt



Discussion

No Comment Found