Search found 1719 matches

by DigitalVolcano
Tue May 19, 2015 10:53 am
Forum: TextCrawler - General
Topic: BUG: Replacement group should ignore consecutive digits
Replies: 2
Views: 11548

Re: BUG: Replacement group should ignore consecutive digits

I think this is by design in the .NET regular expression engine.

More info here:
https://msdn.microsoft.com/en-us/librar ... x#Numbered


You can avoid this problem by putting braces around the group number:

Code: Select all

${1}2${2}
hope this helps!
by DigitalVolcano
Wed May 06, 2015 12:14 pm
Forum: Duplicate Cleaner support
Topic: Duplicate Cleaner Selection Glitch
Replies: 1
Views: 5329

Re: Duplicate Cleaner Selection Glitch

That's strange - I haven't replicated it so far.

Is it checkmarking files when it shouldn't? Or is it bringing up the right-click menu when it shouldn't? I'm not sure from the video.

The double click usually launches an external program.
by DigitalVolcano
Sat May 02, 2015 7:46 pm
Forum: Duplicate Cleaner support
Topic: Internet access during deletion?
Replies: 1
Views: 4827

Re: Internet access during deletion?

No, it doesn't use the internet for anything except checking for updates on start up (if enabled)
by DigitalVolcano
Thu Apr 30, 2015 4:33 pm
Forum: Regular Expressions Help
Topic: need to delete 50 linefeeds in a row..
Replies: 4
Views: 17785

Re: need to delete 50 linefeeds in a row..

Try this:

RegEx

Code: Select all

(\r\n){20,}
Replace:

Code: Select all

\r\n
The 20 is the minimum number of blank lines (-1) before it is removed. This assumes CRLF line endings - you may have to change it to just \n for LF endings.
by DigitalVolcano
Thu Apr 30, 2015 11:33 am
Forum: Regular Expressions Help
Topic: need to delete 50 linefeeds in a row..
Replies: 4
Views: 17785

Re: need to delete 50 linefeeds in a row..

There's a Regular Expression in the TextCrawler library called 'Find/Strip Whitespace' - this may do the job (back up first though)!
by DigitalVolcano
Thu Apr 30, 2015 11:32 am
Forum: Duplicate Cleaner support
Topic: Deleting files on NAS very slow
Replies: 2
Views: 16051

Re: Deleting files on NAS very slow

The deletion speed (esp. on NAS) is something we are trying hard to improve for the next version. I'm not sure about the Synology MTU issue, but that does sound like a very long time for a thousand files! Hopefully they fix it soon. Is renaming them any faster? You could rename with the suffix "...
by DigitalVolcano
Thu Apr 30, 2015 11:20 am
Forum: Duplicate Cleaner support
Topic: Importing Folder List
Replies: 3
Views: 7836

Re: Importing Folder List

Ah, I see now

The duplicate folder list is for export only - you can't re-import it back. The import option is only for the duplicate files list.

It needs a better error message adding.
by DigitalVolcano
Wed Apr 29, 2015 3:15 pm
Forum: TextCrawler - General
Topic: Removal of Blank Lines
Replies: 2
Views: 16430

Re: Removal of Blank Lines

To use

Code: Select all

^\r\n
you need the option 'Multi line anchors' enabled.

Also, this assumes you don't just have \r or \n line endings!
by DigitalVolcano
Mon Apr 27, 2015 10:44 am
Forum: Duplicate Cleaner support
Topic: Importing Folder List
Replies: 3
Views: 7836

Re: Importing Folder List

Did you re-export the CSV file from excel using quotation marks around the fields? Not having those could cause issues. It needs to be in exactly the same format, with the same columns for the import to work.
by DigitalVolcano
Mon Apr 27, 2015 10:42 am
Forum: Duplicate Cleaner support
Topic: Is it possible to save audio hashes?
Replies: 3
Views: 8897

Re: Is it possible to save audio hashes?

Not currently possible I'm afraid, but this hash caching functionality is on the development list for version 4.

Thanks
James