Search found 1717 matches

by DigitalVolcano
Mon Mar 30, 2015 12:08 pm
Forum: Regular Expressions Help
Topic: Help with removing a big chunk of html
Replies: 1
Views: 11811

Re: Help with removing a big chunk of html

Would something like this help?

RegEx:

Code: Select all

<td>.*?<td/>
Replace:

Code: Select all

<td>New text</td>
You need the 'dot matches newline' option turned on if your tags span more than one line
by DigitalVolcano
Mon Mar 30, 2015 11:41 am
Forum: TextCrawler - General
Topic: Batch Processing Options
Replies: 2
Views: 11198

Re: Batch Processing Options

You can set most of what you require inside the batch file from the 'Command' drop down in the batch editor: Inputs Set input folder [Folder name(s)] Set file filter [Filter] Set exclude filter [Filter] Scan subfolders on Scan subfolders off Set input file [File name] Outputs Update original file Ou...
by DigitalVolcano
Mon Mar 30, 2015 11:37 am
Forum: TextCrawler - General
Topic: Some ideas
Replies: 6
Views: 20333

Re: Some ideas

Thanks for all the suggestions - I'm currently planning the updates for version 3.0.5 so will take these into account. The batch mode command currently only allows you to set one file - the commands are executed at the start of the script before the processing is done. You could achieve your desired...
by DigitalVolcano
Mon Mar 30, 2015 11:27 am
Forum: Duplicate Cleaner support
Topic: Delete Error: The parameter is incorrect
Replies: 9
Views: 21330

Re: Delete Error: The parameter is incorrect

Can you paste a bit of the logfile entry for the error files here please? Perhaps there is something odd in the filename.
by DigitalVolcano
Wed Mar 25, 2015 1:07 pm
Forum: Duplicate Cleaner support
Topic: Possible issue with two periods in filename
Replies: 2
Views: 6138

Re: Possible issue with two periods in filename

Have you tried turning the 'Ignore file extensions when comparing names' option off? It's in the More Options window->Scanning tab.
by DigitalVolcano
Wed Mar 18, 2015 11:08 am
Forum: Duplicate Cleaner support
Topic: NAS Scan Speed Extremely Slow
Replies: 10
Views: 22034

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: 9843

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: 27427

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: 11415

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: 10939

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.