Search found 13 matches

by sk8ordie
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: 1925348

Re: JREPL.BAT v8.6 - regex text processor with support for text highlighting and alternate character sets

yes, indeed the loop is pointless there
just found it in an example and it worked, so I didn't touch it
by sk8ordie
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: 1925348

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...
by sk8ordie
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: 1925348

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?
by sk8ordie
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: 1925348

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...
by sk8ordie
12 Nov 2021 08:12
Forum: DOS Batch Forum
Topic: Batch file edit text file
Replies: 20
Views: 45616

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
by sk8ordie
11 Nov 2021 17:13
Forum: DOS Batch Forum
Topic: Batch file edit text file
Replies: 20
Views: 45616

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...
by sk8ordie
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: 1925348

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...
by sk8ordie
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: 1925348

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...
by sk8ordie
19 Jun 2021 01:34
Forum: DOS Batch Forum
Topic: From .txt file to .stro file
Replies: 1
Views: 2449

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 ...
by sk8ordie
18 Jun 2021 14:03
Forum: DOS Batch Forum
Topic: From .txt file to .stro file
Replies: 1
Views: 2449

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...
by sk8ordie
10 Feb 2021 07:25
Forum: DOS Batch Forum
Topic: URL's to .txt file
Replies: 2
Views: 3589

Re: URL's to .txt file

wow, perfect!
thank you so much!
by sk8ordie
10 Feb 2021 04:49
Forum: DOS Batch Forum
Topic: URL's to .txt file
Replies: 2
Views: 3589

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 ...