Search found 133 matches

by xman
18 Jan 2017 16:59
Forum: Tips & Tricks, Questions & Answers
Topic: Regex Rename/Move problem
Replies: 4
Views: 1460

Re: Regex Rename/Move problem

So it seems it was the backslash, when I use "\" it seems to work correctly, even (3). When "/" is used it does what I just described.
by xman
18 Jan 2017 16:38
Forum: Tips & Tricks, Questions & Answers
Topic: Regex Rename/Move problem
Replies: 4
Views: 1460

Regex Rename/Move problem

Let's say I have a file "a.txt". When I rename it the normal way (click on the name, edit, enter) to "b/a.txt", the program creates folder "b" and moves "a.txt" inside. When I do the same using regex rename and this pattern: a.txt > b/a.txt it behaves somewhat...
by xman
01 May 2016 07:51
Forum: Bug Reports
Topic: Scripting Bugs
Replies: 605
Views: 98323

Re: Scripting Bugs

The code below produces "20160430 20160429 20160428" instead of "20160430 20160430 20160430".

Code: Select all

msg "<date -1d yyyymmdd> <date -1d yyyymmdd> <date -1d yyyymmdd>";
by xman
14 Nov 2015 12:51
Forum: Tips & Tricks, Questions & Answers
Topic: Find hex string in specific position in a file
Replies: 12
Views: 3236

Re: Find hex string in specific position in a file

This is definitely useful and can replace regex in many situations!

So instead of, say, \x11\x12[\d\D]{3}\x23, I can now simplify it to just 11 12 ?? ?? ?? 23 :appl: :P
by xman
30 Sep 2015 12:57
Forum: Tips & Tricks, Questions & Answers
Topic: Just for fun (I want to cry...)
Replies: 2
Views: 1259

Re: Just for fun (I want to cry...)

If you are looking for icons, you may also try this website:
http://www.iconarchive.com/

I'm not really impressed with system icons myself.
by xman
22 Sep 2015 01:01
Forum: Bug Reports
Topic: thumbnails
Replies: 29
Views: 9075

Re: thumbnails

Here is what makes that image different from most JPEGs around. Every JPEG file consists of a bunch of segments, one after another. These segments start with 2 byte marker (of which first byte is always FF), followed by 2-byte value (which gives us size of these 2 bytes plus size of data to follow),...
by xman
21 Sep 2015 05:33
Forum: Bug Reports
Topic: binary content search using regex seems broken
Replies: 26
Views: 7466

Re: binary content search using regex seems broken

Thanks for the fixes. :appl: I finally got to testing the new version. First, I tried finding a file using 100 kB long regex sequence (in the form of a byte sequence, like this: \x11\x22 ...) --> success :tup: Then I tested finding a string that is right before the end of a 17 GB file. Normal + Text...
by xman
18 Sep 2015 02:50
Forum: Bug Reports
Topic: Flatten Folder Failure
Replies: 30
Views: 5836

Re: Flatten Folder Failure

In fact, just pressing the escape without running a search or doing anything else triggers this bug. And I tried in ::fresh and it works there too.
by xman
18 Sep 2015 02:46
Forum: Bug Reports
Topic: Flatten Folder Failure
Replies: 30
Views: 5836

Re: Flatten Folder Failure

Good job figuring it out :appl:.

I just tried content search, cancelled it using escape and got the same message. And it worked before the search, I tried.
by xman
18 Sep 2015 02:26
Forum: Bug Reports
Topic: Flatten Folder Failure
Replies: 30
Views: 5836

Re: Flatten Folder Failure

Original Poster, ie you. :lol:
by xman
18 Sep 2015 02:10
Forum: Bug Reports
Topic: Flatten Folder Failure
Replies: 30
Views: 5836

Re: Flatten Folder Failure

The error described by OP appeared again, but this time with different message:
"folder was flat already"
by xman
18 Sep 2015 01:56
Forum: Tips & Tricks, Questions & Answers
Topic: 15.70.0123 Regex Functionality Downgrade
Replies: 9
Views: 2539

Re: 15.70.0123 Regex Functionality Downgrade

I tested it now and it seems that multi-line doesn't work in any of the three modes. But it was probably an oversight and will be fixed.
by xman
18 Sep 2015 01:40
Forum: Tips & Tricks, Questions & Answers
Topic: 15.70.0123 Regex Functionality Downgrade
Replies: 9
Views: 2539

Re: 15.70.0123 Regex Functionality Downgrade

It most likely is. After all, I was the one, who suggested the change :twisted:. See the thread I linked to.
by xman
18 Sep 2015 01:26
Forum: Tips & Tricks, Questions & Answers
Topic: 15.70.0123 Regex Functionality Downgrade
Replies: 9
Views: 2539

Re: Functionality Downgrade

As I understand it, this applies only to Binary mode. Text and "Text and Binary" modes should still use multi-line mode. In a binary file, newline is meaningless and is not any less or more significant than any other random byte. You might be interested in this thread: http://www.xyplorer....
by xman
18 Sep 2015 01:08
Forum: Bug Reports
Topic: binary content search using regex seems broken
Replies: 26
Views: 7466

Re: binary content search using regex seems broken

Thanks, now binary regex works reasonably well :appl: . I did some tests and the "subscript out of range" issue is gone. I also noticed, that it didn't affect just binary regex, but also the "it's a hex string" mode. I was pleasantly surprised that regex "abc[\d\D]*def"...