Search found 7 matches

by dispro
14 Nov 2014 06:10
Forum: DOS Batch Forum
Topic: use new line as delimiter
Replies: 13
Views: 8263

Re: use new line as delimiter

Squashman's example shows the database as i want.
My problem is that whet I arrange my database like these:
111
222
333
444
555

my code don't work!
It only works when i arrange the database like these:
111/222/333/444/555
by dispro
14 Nov 2014 01:54
Forum: DOS Batch Forum
Topic: use new line as delimiter
Replies: 13
Views: 8263

Re: use new line as delimiter

Let me clarify my question: I have *.txt file that looks like these: 111/222/333/444/555 I have a code that shows the data from these file like these: 111 222 333 444 555 Here is the full code: @echo off REM --------------------------------------------------------------------------- REM Cream fisier...
by dispro
14 Nov 2014 00:55
Forum: DOS Batch Forum
Topic: use new line as delimiter
Replies: 13
Views: 8263

Re: use new line as delimiter

Where should I implement the code in my program?
by dispro
13 Nov 2014 08:36
Forum: DOS Batch Forum
Topic: use new line as delimiter
Replies: 13
Views: 8263

Re: use new line as delimiter

I'm sorry i didn't understand that.
by dispro
13 Nov 2014 08:13
Forum: DOS Batch Forum
Topic: use new line as delimiter
Replies: 13
Views: 8263

Re: use new line as delimiter

Yes that was exactly what I meant
by dispro
13 Nov 2014 08:02
Forum: DOS Batch Forum
Topic: use new line as delimiter
Replies: 13
Views: 8263

Re: use new line as delimiter

The code works fine, but the data in "Database_version.txt" is organized in a single line.
I would like to separate the data in this file to new line for every part (foe aesthetics), but without effecting the final outcome.
by dispro
13 Nov 2014 06:30
Forum: DOS Batch Forum
Topic: use new line as delimiter
Replies: 13
Views: 8263

use new line as delimiter

Hello, I have a code that that shows information from other file: set /a index_soft=%index_soft%+3 set /a index_key=%index_key%+3 set /a index_versiune=%index_versiune%+3 set curent_name= set curent_Type= set curent_version= for /f "tokens=%index_soft%-%index_versiune% delims=/" %%1 IN (Da...