Search found 1712 matches

by DigitalVolcano
Wed Mar 18, 2015 11:08 am
Forum: Duplicate Cleaner support
Topic: NAS Scan Speed Extremely Slow
Replies: 10
Views: 22033

Re: NAS Scan Speed Extremely Slow

Don't think the attachments appeared.

Is it slow in the 'building file list' stage, or the duplicate finding stage? I've found file discovery on NAS to be quite slow - looking into this.
by DigitalVolcano
Wed Mar 18, 2015 11:04 am
Forum: Duplicate Cleaner support
Topic: Duplicatedly Related
Replies: 5
Views: 9771

Re: Duplicatedly Related

A tab with 'Unique/other files' is due to arrive with version 4.0, as this has been a much requested feature!
by DigitalVolcano
Wed Mar 18, 2015 11:01 am
Forum: Regular Expressions Help
Topic: Delete x lines, then stop
Replies: 5
Views: 27212

Re: Delete x lines, then stop

You can try

Regex:

Code: Select all

.*?(region)
Replace:
$1

With 'dot maches newline' checked.

This should work if you don't have later lines with 'region' in the file, otherwise you may lose more data. Always test and back up first!
by DigitalVolcano
Wed Mar 18, 2015 10:46 am
Forum: Regular Expressions Help
Topic: Scramble email characters before the @ sign
Replies: 1
Views: 11401

Re: Scramble email characters before the @ sign

Not sure how to do this randomly. You can mix up by capturing the letters before the @ with brackets () and replacing in a different order, e.g. $5$2$3$4, but this would be difficult on variable length email addresses.
by DigitalVolcano
Wed Mar 18, 2015 10:44 am
Forum: TextCrawler - General
Topic: batch insert text?
Replies: 2
Views: 10937

Re: batch insert text?

You can use line mode on TextCrawler pro

For instance:

Using mode "Limit to Lines"
From: 26
To: 26

RegEx:
$
Replace
\r\nTHE NEW LINE

This will insert a new line after line 26. The $ symbol matches the line end, and the \r\n inserts a new one.
by DigitalVolcano
Wed Mar 18, 2015 10:32 am
Forum: TextCrawler - General
Topic: annoying .bak files
Replies: 2
Views: 15193

Re: annoying .bak files

You can turn off bak files in the Options screen:
http://www.digitalvolcano.co.uk/textcra ... =&sct=MzA4
by DigitalVolcano
Sat Mar 14, 2015 9:07 am
Forum: Duplicate Cleaner support
Topic: Getting Error Message related to disk I/O error
Replies: 7
Views: 11543

Re: Getting Error Message related to disk I/O error

You could try factory-resetting the program by deleting the database at
C:\Users\[YOUR USER]\AppData\Roaming\DigitalVolcano\DuplicateCleaner\DuplicateCleanerPro.data
by DigitalVolcano
Fri Mar 13, 2015 10:14 am
Forum: Duplicate Cleaner support
Topic: Getting Error Message related to disk I/O error
Replies: 7
Views: 11543

Re: Getting Error Message related to disk I/O error

Which folder did you move? Duplicate Cleaner will still try and write the database to the same place (C:\Users\[YOUR USER]\AppData\Roaming\DigitalVolcano\DuplicateCleaner on Windows 7)
by DigitalVolcano
Tue Mar 10, 2015 10:34 am
Forum: Regular Expressions Help
Topic: Delete entire rows
Replies: 7
Views: 24602

Re: Delete entire rows

(\n|$) maybe? That will match end of line or end of file.
by DigitalVolcano
Tue Mar 10, 2015 10:32 am
Forum: Duplicate Cleaner support
Topic: Getting Error Message related to disk I/O error
Replies: 7
Views: 11543

Re: Getting Error Message related to disk I/O error

Sounds like it's having trouble writing to the database. Do you have enough disk space left, or is there a space quota on your user area that is being reached?