Search found 1719 matches

by DigitalVolcano
Wed Nov 06, 2013 11:42 am
Forum: Duplicate Cleaner support
Topic: "Don't scan against self" issue in 3.2.x
Replies: 6
Views: 11386

Re: "Don't scan against self" issue in 3.2.x

This works fine for me - I get the three files when 'don't scan' is set to folder B.
Is it possible for you to tell me the exact file/folder structure causing the problem? Are there other files in there?

thanks!
by DigitalVolcano
Wed Nov 06, 2013 11:21 am
Forum: Duplicate Cleaner support
Topic: Non-Duplicate Files/Folders
Replies: 1
Views: 5168

Re: Non-Duplicate Files/Folders

Hi,
Not in the current version, but a unique file tab is slated for version 4.0.
by DigitalVolcano
Fri Nov 01, 2013 2:32 pm
Forum: TextCrawler - General
Topic: Adding Text to the End of a Line - Not Simple :)
Replies: 4
Views: 14636

Re: Adding Text to the End of a Line - Not Simple :)

If it is on every occurrence you could just replace the /r/n with the >

regex: (-ExecutionPolicy ByPass.*)>
rep: $1 defer="Y">


Or if it just happens in some places you could do a second pass with:

search: > defer="Y"
replace: defer="Y">
by DigitalVolcano
Fri Nov 01, 2013 10:32 am
Forum: Duplicate Cleaner support
Topic: Error in Scan Process: Illegal character in path
Replies: 8
Views: 19182

Re: Error in Scan Process: Illegal character in path

Sorry you are having trouble. Is the drive you are scanning a share from Linux, or a NAS drive? It might have a character illegal in Windows (but allowed in Linux) such as < > or ?.

That said, it shouldn't quit the scan when it hits this. I've raised a bug report to get this fixed. Thanks!
by DigitalVolcano
Fri Nov 01, 2013 10:24 am
Forum: Regular Expressions Help
Topic: Adding Text the the End of a Line
Replies: 1
Views: 10566

Re: Adding Text the the End of a Line

Try this -

Code: Select all

RegEx:
(-ExecutionPolicy ByPass.*)\r\n

Replace:
$1 defer="Y"\r\n
Try a file in the tester first! This will change every 'ExecutionPolicy ByPass' line, and assumes that your files use CRLF line endings.
by DigitalVolcano
Fri Nov 01, 2013 10:23 am
Forum: TextCrawler - General
Topic: Adding Text to the End of a Line - Not Simple :)
Replies: 4
Views: 14636

Re: Adding Text to the End of a Line - Not Simple :)

Try this -

Code: Select all

RegEx:
(-ExecutionPolicy ByPass.*)\r\n

Replace:
$1 defer="Y"\r\n
Try a file in the tester first! This will change every 'ExecutionPolicy ByPass' line, and assumes that your files use CRLF line endings.
by DigitalVolcano
Fri Nov 01, 2013 10:04 am
Forum: TextCrawler - General
Topic: How to replace only part of a regular expression??
Replies: 2
Views: 10422

Re: How to replace only part of a regular expression??

Try this: RegEx: \. ([a-z]) Replace: , $1 The brackets create a 'capturing group', the contents of which can be deployed in the replacement using the $1 expression (ie 1st capturing group). Ensure that the 'Case Sensitive' option is on too, so it doesn't capture legitimate full stops. Hope this helps!
by DigitalVolcano
Tue Oct 29, 2013 10:28 am
Forum: Duplicate Cleaner support
Topic: Directory tree not expanding
Replies: 18
Views: 32429

Re: Directory tree not expanding

No progress yet as I haven't managed to replicate the problem. DC Free (all the way back to v2.0) has the same way of finding the folder tree, so I'm not sure why it worked then. I'm not sure if you've tried this yet, but does running DC as administrator make a difference? (Right-click on shortcut, ...
by DigitalVolcano
Sun Oct 27, 2013 8:08 pm
Forum: Duplicate Cleaner support
Topic: Question/ request
Replies: 3
Views: 7186

Re: Question/ request

BTW, you can get a 10% discount with the voucher code FOUNDIT ;)
by DigitalVolcano
Sun Oct 27, 2013 1:48 pm
Forum: TextCrawler - General
Topic: Extracting text between tags
Replies: 2
Views: 11257

Re: Extracting text between tags

The current version doesn't support writing just the found text to a new file. (Hopefully next version?) However you could possibly do this by making a backup copy of your files, then running a search for .*<tagname> and replacing with nothing, and then repeating this for </tagname>.* and replacing ...