yes, indeed the loop is pointless there
just found it in an example and it worked, so I didn't touch it
Search found 13 matches
- 13 Nov 2021 09:04
- Forum: DOS Batch Forum
- Topic: JREPL.BAT v8.6 - regex text processor with support for text highlighting and alternate character sets
- Replies: 550
- Views: 2165388
- 13 Nov 2021 06:53
- Forum: DOS Batch Forum
- Topic: JREPL.BAT v8.6 - regex text processor with support for text highlighting and alternate character sets
- Replies: 550
- Views: 2165388
Re: JREPL.BAT v8.6 - regex text processor with support for text highlighting and alternate character sets
Not sure what you're asking, honestly. _ps is not out of it as I've shown in the regex101 example. The main purpose of JREPL is replacing. This thread is full of examples. Do you have problems to understand the help documentation of JREPL? Steffen ohh okay, now i get it :) thank you for the guidanc...
- 13 Nov 2021 06:39
- Forum: DOS Batch Forum
- Topic: JREPL.BAT v8.6 - regex text processor with support for text highlighting and alternate character sets
- Replies: 550
- Views: 2165388
Re: JREPL.BAT v8.6 - regex text processor with support for text highlighting and alternate character sets
yes, it's good as it is, but how does the program find its way back?
if _ps is out of it?
it have no clue where to put the 0000100 numbers back, or am I getting something wrong?
if _ps is out of it?
it have no clue where to put the 0000100 numbers back, or am I getting something wrong?
- 12 Nov 2021 14:57
- Forum: DOS Batch Forum
- Topic: JREPL.BAT v8.6 - regex text processor with support for text highlighting and alternate character sets
- Replies: 550
- Views: 2165388
Re: JREPL.BAT v8.6 - regex text processor with support for text highlighting and alternate character sets
I need a little help again :oops: in a result.txt file, there is always one link, after _ps with a random numbers, and always a known numbers to insert 0000100 could all this be done with jrepl or just finding the numbers? result.txt https://stream9.nava.hu/navahu_bdrm/_definst_/amlst:mnfa-84/manife...
- 12 Nov 2021 08:12
- Forum: DOS Batch Forum
- Topic: Batch file edit text file
- Replies: 20
- Views: 50878
Re: Batch file edit text file
okay thanks for the recommendation, I've been to the jrepl topic for other reasons, I just didn't think it could be used for this operation
- 11 Nov 2021 17:13
- Forum: DOS Batch Forum
- Topic: Batch file edit text file
- Replies: 20
- Views: 50878
Re: Batch file edit text file
Hi! in cases where I can use it relatively well, but how can it be solved when there are unknown numbers in a particular place? I could somehow describe it in such a way that there are always random numbers at that location result.txt https://stream9.nava.hu/navahu_bdrm/_definst_/amlst:mnfa-84/manif...
- 03 Nov 2021 13:44
- Forum: DOS Batch Forum
- Topic: JREPL.BAT v8.6 - regex text processor with support for text highlighting and alternate character sets
- Replies: 550
- Views: 2165388
Re: JREPL.BAT v8.6 - regex text processor with support for text highlighting and alternate character sets
wow thanks for the correction, that's wonderful
and also thanks for the tips!
and also thanks for the tips!
- 03 Nov 2021 12:18
- Forum: DOS Batch Forum
- Topic: JREPL.BAT v8.6 - regex text processor with support for text highlighting and alternate character sets
- Replies: 550
- Views: 2165388
Re: JREPL.BAT v8.6 - regex text processor with support for text highlighting and alternate character sets
Thank you so much this is so perfect! it doesn't matter if it's in several parts:) nice, thousands of lines in .log, and just a second i got what I needed brutal how effective it is :) do you have any tips on whether any of the online regex sites are compatible with jrepl? because without it i don't...
- 02 Nov 2021 05:59
- Forum: DOS Batch Forum
- Topic: JREPL.BAT v8.6 - regex text processor with support for text highlighting and alternate character sets
- Replies: 550
- Views: 2165388
Re: JREPL.BAT v8.6 - regex text processor with support for text highlighting and alternate character sets
hello! i want to use jrepl with batch file but I only get an empty file (result.txt) and an error message: JScript runtime error in Search regular expression: Syntactic error in the regular expression in result.txt this should be 14a3f1a9a023373f886ca2ff1f66294c:ac76bc99a93f5d849796e001208dd920 this...
- 19 Jun 2021 01:34
- Forum: DOS Batch Forum
- Topic: From .txt file to .stro file
- Replies: 1
- Views: 3063
Re: [solved] From .txt file to .stro file
I've made some progress so that I can create the load.stro file @echo off docker run -it screenbreak/singlefile-dockerized http://kodi:kodi@192.168.1.10:8080 > log.html xidel -s log.html -e "<div class='playing-time-current'>{inner-html()}</div>" > time.txt start /B "" jrepl ":" "" /f "time.txt" /o ...
- 18 Jun 2021 14:03
- Forum: DOS Batch Forum
- Topic: From .txt file to .stro file
- Replies: 1
- Views: 3063
From .txt file to .stro file
Hello! (sorry for my English I will try to explain as clearly as possible) I would like to read numbers from a .txt file and then expand the .stro file with this "{enter}" since JREPL is quite complex, is it possible to add {enter} after the numbers? or could some other solution be found? actually a...
- 10 Feb 2021 07:25
- Forum: DOS Batch Forum
- Topic: URL's to .txt file
- Replies: 2
- Views: 4283
Re: URL's to .txt file
wow, perfect!
thank you so much!
thank you so much!
- 10 Feb 2021 04:49
- Forum: DOS Batch Forum
- Topic: URL's to .txt file
- Replies: 2
- Views: 4283
URL's to .txt file
Hi! (sry for my english) i'm a newbie in batch.. how to write links to a .txt file line by line? i use "copy" but this is not a good way bc output i get this line too "0 file(s) copied." .bat file @echo off title Link's to txt file REM for accent links chcp 65001 > NUL :LINK set /p url="URL: " copy ...