|
10 | 10 | <body> |
11 | 11 | <div class="center"> |
12 | 12 | <h1>TextAnalysisTool.NET</h1> |
13 | | - <p>by David Anson</p> |
| 13 | + <p> |
| 14 | + <a href="http://dlaa.me/">David Anson</a><br/> |
| 15 | + <a href="https://github.com/mike-mo">Mike Morante</a><br/> |
| 16 | + <a href="https://github.com/cohen-uriel">Uriel Cohen</a> |
| 17 | + </p> |
14 | 18 | </div> |
15 | 19 | <h2>Summary</h2> |
16 | 20 | <p> |
17 | 21 | TextAnalysisTool.NET is a free program designed to excel at viewing, searching, and navigating large files quickly and efficiently. |
18 | 22 | TextAnalysisTool.NET provides a view of the data that you can easily manipulate (through the use of various filters) to display exactly the information you need - as you need it! |
19 | 23 | </p> |
20 | | - <img src="TextAnalysisTool.NET.gif" alt="Animated GIF showing basic TextAnalysisTool.NET functionality" width="681" height="329" style="margin-top: 1em"/> |
| 24 | + <a href="TextAnalysisTool-ScreenShot-0.png"><img src="TextAnalysisTool-ScreenShot-0.png" alt="Showing all lines with filters"/></a> |
| 25 | + <a href="TextAnalysisTool-ScreenShot-1.png"><img src="TextAnalysisTool-ScreenShot-1.png" alt="Showing only filtered lines"/></a> |
| 26 | + <a href="TextAnalysisTool-ScreenShot-2.png"><img src="TextAnalysisTool-ScreenShot-2.png" alt="Add Filter dialog"/></a> |
| 27 | + <a href="TextAnalysisTool-ScreenShot-3.png"><img src="TextAnalysisTool-ScreenShot-3.png" alt="Find dialog"/></a> |
21 | 28 | <h2>Download</h2> |
22 | 29 | <p> |
23 | | - <a href="//github.com/TextAnalysisTool/Releases/raw/master/TextAnalysisTool.zip">TextAnalysisTool.NET.zip</a> - 90 KB ZIP includes version <code>2013-05-07</code> for .NET 2+ (32- and 64-bit) and version <code>2006-12-04</code> for .NET 1.1+ (32-bit only) |
| 30 | + <strong class="large"><a href="//github.com/TextAnalysisTool/Releases/raw/master/TextAnalysisTool.NET.zip">TextAnalysisTool.NET.zip</a></strong> |
24 | 31 | </p> |
| 32 | + <h3> |
| 33 | + Includes: |
| 34 | + </h3> |
| 35 | + <ul class="notes"> |
| 36 | + <li>Version <code>2015-01-07</code> for .NET 4+ (32- and 64-bit)</li> |
| 37 | + <li>Version <code>2013-05-07</code> for .NET 2+ (32- and 64-bit)</li> |
| 38 | + <li>Version <code>2006-12-04</code> for .NET 1.1+ (32-bit only)</li> |
| 39 | + <li>Version <code>2001-12-28</code> for x86 (32-bit only)</li> |
| 40 | + </ul> |
25 | 41 | <h2>Overview</h2> |
26 | | - <div class="clear"> |
27 | | -<pre><span class="label">The Problem</span>: For those times when you have to analyze a large amount of textual |
| 42 | +<p><span class="label">The Problem</span>: For those times when you have to analyze a large amount of textual |
28 | 43 | data, picking out the relevant line(s) of interest can be quite difficult. |
29 | 44 | Standard text editors usually provide a generic "find" function, but the |
30 | 45 | limitations of that simple approach quickly become apparent (e.g., when it is |
31 | 46 | necessary to compare two or more widely separated lines). Some more |
32 | 47 | sophisticated editors do better by allowing you to "bookmark" lines of |
33 | | -interest; this can be a big help, but is often not enough. |
| 48 | +interest; this can be a big help, but is often not enough.</p> |
34 | 49 |
|
35 | | -<span class="label">The Solution</span>: TextAnalysisTool.NET - a program designed from the start to excel |
| 50 | +<p><span class="label">The Solution</span>: TextAnalysisTool.NET - a program designed from the start to excel |
36 | 51 | at viewing, searching, and navigating large files quickly and efficiently. |
37 | 52 | TextAnalysisTool.NET provides a view of the file that you can easily manipulate |
38 | 53 | (through the use of various filters) to display exactly the information you |
39 | | -need - as you need it. |
| 54 | +need - as you need it.</p> |
40 | 55 |
|
41 | | -<span class="label">Filters</span>: Before displaying the lines of a file, TextAnalysisTool.NET passes the |
| 56 | +<p><span class="label">Filters</span>: Before displaying the lines of a file, TextAnalysisTool.NET passes the |
42 | 57 | lines of that file through a set of user-defined filters, dimming or hiding all |
43 | 58 | lines that do not satisfy any of the filters. Filters can select only the |
44 | 59 | lines that contain a sub-string, those that have been marked with a particular |
45 | | -marker type, or those that match a regular expression. A color can be |
46 | | -associated with each filter so lines matching a particular filter stand out and |
47 | | -so lines matching different filters can be easily distinguished. In addition |
48 | | -to the normal "including" filters that isolate lines of text you DO want to |
49 | | -see, there are also "excluding" filters that can be used to suppress lines you |
50 | | -do NOT want to see. Excluding filters are configured just like including |
| 60 | +marker type, or those that match a regular expression. Text and background |
| 61 | +colors can be associated with each filter so that lines matching a particular |
| 62 | +filter stand out and lines matching different filters can be easily distinguished. |
| 63 | +In addition to the normal "including" filters that isolate lines of text you DO |
| 64 | +want to see, there are also "excluding" filters that can be used to suppress |
| 65 | +lines you do NOT want to see. Excluding filters are configured just like including |
51 | 66 | filters but are processed afterward and remove all matching lines from the set. |
52 | | -Excluding filters allow you to easily refine your search even further. |
| 67 | +Excluding filters allow you to easily refine your search even further.</p> |
53 | 68 |
|
54 | | -<span class="label">Markers</span>: Markers are another way that TextAnalysisTool.NET makes it easy to |
| 69 | +<p><span class="label">Markers</span>: Markers are another way that TextAnalysisTool.NET makes it easy to |
55 | 70 | navigate a file; you can mark any line with one or more of eight different |
56 | 71 | marker types. Once lines have been marked, you can quickly navigate between |
57 | | -similarly marked lines - or add a "marked by" filter to view only those lines. |
| 72 | +similarly marked lines - or add a "marked by" filter to view only those lines.</p> |
58 | 73 |
|
59 | | -<span class="label">Find</span>: TextAnalysisTool.NET also provides a flexible "find" function that allows |
| 74 | +<p><span class="label">Find</span>: TextAnalysisTool.NET also provides a flexible "find" function that allows |
60 | 75 | you to search for text anywhere within a file. This text can be a literal |
61 | 76 | string or a regular expression, so it's easy to find a specific line. If you |
62 | 77 | decide to turn a find string into a filter, the history feature of both dialogs |
63 | | -makes it easy. |
| 78 | +makes it easy.</p> |
64 | 79 |
|
65 | | -<span class="label">Summary</span>: TextAnalysisTool.NET was written with speed and ease of use in mind |
| 80 | +<p><span class="label">Summary</span>: TextAnalysisTool.NET was written with speed and ease of use in mind |
66 | 81 | throughout. It saves you time by allowing you to save and load filter sets; it |
67 | 82 | lets you import text by opening a file, dragging-and-dropping a file or text |
68 | 83 | from another application, or by pasting text from the clipboard; and it allows |
69 | 84 | you to share the results of your filters by copying lines to the clipboard or |
70 | 85 | by saving the current lines to a file. TextAnalysisTool.NET supports files |
71 | 86 | encoded with ANSI, UTF-8, Unicode, and big-endian Unicode and is designed to |
72 | | -handle large files efficiently.</pre> |
73 | | - </div> |
| 87 | +handle large files efficiently.</p> |
74 | 88 | <h2>Resources</h2> |
75 | 89 | <ul> |
76 | 90 | <li><a href="ReadMe.txt">ReadMe.txt</a></li> |
77 | | - <li><a href="TextAnalysisTool.NET.txt">TextAnalysisTool.NET.txt</a></li> |
| 91 | + <li><a href="TextAnalysisTool.NET.txt">Documentation</a></li> |
78 | 92 | <li><a href="//dlaa.me/blog/post/3450647">Introductory blog post</a></li> |
79 | | - <li><a href="//dlaa.me/blog/tag/textanalysistool">Related content</a></li> |
| 93 | + <li><a href="//dlaa.me/blog/tag/textanalysistool">Related blog content</a></li> |
| 94 | + </ul> |
| 95 | + <h2>Feedback</h2> |
| 96 | + <ul> |
| 97 | + <li><a href="https://github.com/TextAnalysisTool/Releases/issues">Issue tracker</a></li> |
80 | 98 | </ul> |
81 | 99 | </body> |
82 | 100 | </html> |
0 commit comments