Search found 1717 matches

by DigitalVolcano
Tue Aug 11, 2015 8:56 am
Forum: TextCrawler - General
Topic: TextCrawler skin
Replies: 1
Views: 10994

Re: TextCrawler skin

I've put a note on the bugtracker - we'll see if we can make it default to the system colours when in the classic theme

Thanks
by DigitalVolcano
Tue Aug 11, 2015 8:52 am
Forum: Regular Expressions Help
Topic: Replacing a number with the first four digits
Replies: 2
Views: 15425

Re: Replacing a number with the first four digits

This should work

Regex

Code: Select all

.([0-9]{4})[0-9]{1,}
Replace

Code: Select all

.$1
Try it in the regex tester
by DigitalVolcano
Tue Aug 11, 2015 8:46 am
Forum: Regular Expressions Help
Topic: Multi Line Search (then insert)
Replies: 1
Views: 12268

Re: Multi Line Search (then insert)

You can do multiple line search and replace using the edit button next to the Find/replace boxes. Clicking this will pop up a multi-line editor.

Note that the line endings in the editor will need to match that of your target file (you can change this in the options window)
by DigitalVolcano
Tue Aug 11, 2015 8:43 am
Forum: Duplicate Cleaner support
Topic: The fully qualified file name must be less than 260 charact
Replies: 2
Views: 8167

Re: The fully qualified file name must be less than 260 char

Window's support for >260 filenames can be unpredictable. I'm pretty sure you can't delete long paths to the Recycle bin, but you may be able to delete them permanently.
by DigitalVolcano
Tue Aug 04, 2015 9:19 am
Forum: TextCrawler - General
Topic: Multiple find/replace from a pre-defined list?
Replies: 8
Views: 39165

Re: Multiple find/replace from a pre-defined list?

Not sure why this should happen. Are there any other messages (e.g. the files to replace are read-only)?

Have you kept the program on the 'Batch commands' tab when clicking replace? Does it find all the matches again if you click 'Find'?
by DigitalVolcano
Mon Aug 03, 2015 3:31 pm
Forum: TextCrawler - General
Topic: Multiple find/replace from a pre-defined list?
Replies: 8
Views: 39165

Re: Multiple find/replace from a pre-defined list?

Ooops, the manual was updated and the link broke. Updated link:

http://www.digitalvolcano.co.uk/textcra ... __pro_.htm

You can import a comma or tab separated file of find-replace pairs.
by DigitalVolcano
Thu Jul 23, 2015 9:46 am
Forum: Duplicate Cleaner support
Topic: Windows 10 Compatibility
Replies: 2
Views: 6614

Re: Windows 10 Compatibility

Thanks- it was tested against an early Windows 10 and worked, but we've yet to certify it for the full release. Hopefully there should be no issues!
by DigitalVolcano
Thu Jul 16, 2015 2:18 pm
Forum: Duplicate Cleaner support
Topic: Duplicate Cleaner MAJOR BUG !
Replies: 5
Views: 10194

Re: Duplicate Cleaner MAJOR BUG !

This shouldn't have happened if you had 'Don't follow NTFS mount points and junctions' checked. Did you uncheck this? ( on by default). If not I'll have to run some tests!
by DigitalVolcano
Tue Jun 23, 2015 7:33 pm
Forum: Duplicate Cleaner support
Topic: usb devices
Replies: 2
Views: 6774

Re: usb devices

If the device is mapped to a drive it should appear in the path list. Click the 'Refresh' button next to the list to show the drive if you have just plugged it in. You can also drag and drop the drive paths from Windows Explorer if this helps.
by DigitalVolcano
Mon Jun 22, 2015 10:03 am
Forum: Regular Expressions Help
Topic: search, find duplicate and number
Replies: 1
Views: 11967

Re: search, find duplicate and number

There isn't currently a good way to add incrementing numbers with TextCrawler

There are some horribly complicated regular expression hacks here but I haven't tried them with the program!
http://stackoverflow.com/questions/1294 ... bstitution