Search found 10 matches

by d0vgan
Fri Aug 19, 2022 12:19 pm
Forum: TextCrawler - General
Topic: Question: Comparing multi-line RegExp results
Replies: 1
Views: 5572

Re: Question: Comparing multi-line RegExp results

Well, looks like I'm not the only one who does not see an obvious solution for this :)
by d0vgan
Thu Jul 21, 2022 12:29 pm
Forum: TextCrawler - General
Topic: Question: Comparing multi-line RegExp results
Replies: 1
Views: 5572

Question: Comparing multi-line RegExp results

I have a lot of files and do a multi-line regular expression search through all these files. The ScratchPad allows to collect all these results. In case of single-line results, the ScratchPad allows to remove duplicate lines, thus keeping only unique single-line results. But what can be used for mul...
by d0vgan
Thu Jul 21, 2022 12:18 pm
Forum: TextCrawler - General
Topic: TextCrawler Pro 4 - suggestions thread
Replies: 17
Views: 126977

Re: TextCrawler Pro 4 - suggestions thread

+1 for improving the RegEx guide.
There is an additional important thing regarding greedy and non-greedy searches using e.g.

Code: Select all

.+
.*
vs.

Code: Select all

.+?
.*?
by d0vgan
Sun Apr 24, 2022 7:16 pm
Forum: TextCrawler - General
Topic: TextCrawler Pro 4 - suggestions thread
Replies: 17
Views: 126977

Re: TextCrawler Pro 4 - suggestions thread

Great news, thank you in advance! As for suggestions for TextCrawler 4, it would be very good to consider and maybe to redesign or alter the UI that Text Crawler proposes to the user. While the current UI is rich in options and very powerful, it contains too many elements which are not widely used. ...
by d0vgan
Mon Apr 18, 2022 10:33 am
Forum: TextCrawler - General
Topic: Error showing search results for a file with mixed EOL
Replies: 7
Views: 17170

Re: Error showing search results for a file with mixed EOL

Hello? Sorry for disturbing, but, just for comparison, since October 2021 there were 10 releases of Notepad++ (from 8.1.6 to 8.3.3) and two releases of its NppExec plugin (0.8 and 0.8.1). And no update in TextCrawler. If TextCrawler was open-source, most likely I would have already made the changes ...
by d0vgan
Tue Jan 04, 2022 9:11 am
Forum: TextCrawler - General
Topic: Error showing search results for a file with mixed EOL
Replies: 7
Views: 17170

Re: Error showing search results for a file with mixed EOL

Happy New Year!
Is there any planned date of the new release of Text Crawler?
by d0vgan
Mon Oct 04, 2021 3:41 pm
Forum: TextCrawler - General
Topic: Error showing search results for a file with mixed EOL
Replies: 7
Views: 17170

Re: Error showing search results for a file with mixed EOL

Any update on this, please?
I'm using a licensed version in my work, and the example with mixed EOL reflects the actual source code in the repository.
Once this issue in TextCrawler Pro is fixed, I'll recommend it to my colleagues!
by d0vgan
Fri Sep 24, 2021 1:32 pm
Forum: TextCrawler - General
Topic: Shell Extension open from right-click context menu
Replies: 8
Views: 18411

Re: Shell Extension open from right-click context menu

There is an alternative to Send To - TextCrawler. The following .reg file does this: Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\*\shell] [HKEY_CLASSES_ROOT\Directory\shell] [HKEY_CLASSES_ROOT\Directory\shell\textcrawlerpro_search_folder] @="Search using TextCrawlerPro..." [HKE...
by d0vgan
Wed Sep 22, 2021 10:42 am
Forum: TextCrawler - General
Topic: Error showing search results for a file with mixed EOL
Replies: 7
Views: 17170

Re: Error showing search results for a file with mixed EOL

Also I'm having a small feature request regarding the lines shown above/below the search results. As the lines above/below are a context added to the actual search result, could we have a new option to specify the color of these above/below lines? Here as a visual example of what I mean (the lines a...
by d0vgan
Mon Sep 20, 2021 4:49 pm
Forum: TextCrawler - General
Topic: Error showing search results for a file with mixed EOL
Replies: 7
Views: 17170

Error showing search results for a file with mixed EOL

I'm having a file "1.h" with ANSI encoding and mixed line endings: the most part of the file has "\n" line endings, but some lines have "\r\n" line endings. The beginning of the file has "\n" line endings: // 1.h #include "aaa.h" #include "bbb.h...