1010 < body >
1111 < div class ="center ">
1212 < 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 >
1418 </ div >
1519 < h2 > Summary</ h2 >
1620 < p >
@@ -20,25 +24,32 @@ <h2>Summary</h2>
2024 < img src ="TextAnalysisTool.NET.gif " alt ="Animated GIF showing basic TextAnalysisTool.NET functionality " width ="681 " height ="329 " style ="margin-top: 1em "/>
2125 < h2 > Download</ h2 >
2226 < 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)
27+ < strong class =" large " > < a href ="//github.com/TextAnalysisTool/Releases/raw/master/TextAnalysisTool.zip "> TextAnalysisTool.NET.zip</ a > </ strong >
2428 </ p >
29+ < h3 >
30+ Includes:
31+ </ h3 >
32+ < ul class ="notes ">
33+ < li > Version < code > 2015-01-01</ code > for .NET 4+ (32- and 64-bit)</ li >
34+ < li > Version < code > 2013-05-07</ code > for .NET 2+ (32- and 64-bit)</ li >
35+ < li > Version < code > 2006-12-04</ code > for .NET 1.1+ (32-bit only)</ li >
36+ </ ul >
2537 < 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
38+ < p > < span class ="label "> The Problem</ span > : For those times when you have to analyze a large amount of textual
2839data, picking out the relevant line(s) of interest can be quite difficult.
2940Standard text editors usually provide a generic "find" function, but the
3041limitations of that simple approach quickly become apparent (e.g., when it is
3142necessary to compare two or more widely separated lines). Some more
3243sophisticated editors do better by allowing you to "bookmark" lines of
33- interest; this can be a big help, but is often not enough.
44+ interest; this can be a big help, but is often not enough.</ p >
3445
35- < span class ="label "> The Solution</ span > : TextAnalysisTool.NET - a program designed from the start to excel
46+ < p > < span class ="label "> The Solution</ span > : TextAnalysisTool.NET - a program designed from the start to excel
3647at viewing, searching, and navigating large files quickly and efficiently.
3748TextAnalysisTool.NET provides a view of the file that you can easily manipulate
3849(through the use of various filters) to display exactly the information you
39- need - as you need it.
50+ need - as you need it.</ p >
4051
41- < span class ="label "> Filters</ span > : Before displaying the lines of a file, TextAnalysisTool.NET passes the
52+ < p > < span class ="label "> Filters</ span > : Before displaying the lines of a file, TextAnalysisTool.NET passes the
4253lines of that file through a set of user-defined filters, dimming or hiding all
4354lines that do not satisfy any of the filters. Filters can select only the
4455lines that contain a sub-string, those that have been marked with a particular
@@ -49,34 +60,37 @@ <h2>Overview</h2>
4960see, there are also "excluding" filters that can be used to suppress lines you
5061do NOT want to see. Excluding filters are configured just like including
5162filters but are processed afterward and remove all matching lines from the set.
52- Excluding filters allow you to easily refine your search even further.
63+ Excluding filters allow you to easily refine your search even further.</ p >
5364
54- < span class ="label "> Markers</ span > : Markers are another way that TextAnalysisTool.NET makes it easy to
65+ < p > < span class ="label "> Markers</ span > : Markers are another way that TextAnalysisTool.NET makes it easy to
5566navigate a file; you can mark any line with one or more of eight different
5667marker 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.
68+ similarly marked lines - or add a "marked by" filter to view only those lines.</ p >
5869
59- < span class ="label "> Find</ span > : TextAnalysisTool.NET also provides a flexible "find" function that allows
70+ < p > < span class ="label "> Find</ span > : TextAnalysisTool.NET also provides a flexible "find" function that allows
6071you to search for text anywhere within a file. This text can be a literal
6172string or a regular expression, so it's easy to find a specific line. If you
6273decide to turn a find string into a filter, the history feature of both dialogs
63- makes it easy.
74+ makes it easy.</ p >
6475
65- < span class ="label "> Summary</ span > : TextAnalysisTool.NET was written with speed and ease of use in mind
76+ < p > < span class ="label "> Summary</ span > : TextAnalysisTool.NET was written with speed and ease of use in mind
6677throughout. It saves you time by allowing you to save and load filter sets; it
6778lets you import text by opening a file, dragging-and-dropping a file or text
6879from another application, or by pasting text from the clipboard; and it allows
6980you to share the results of your filters by copying lines to the clipboard or
7081by saving the current lines to a file. TextAnalysisTool.NET supports files
7182encoded with ANSI, UTF-8, Unicode, and big-endian Unicode and is designed to
72- handle large files efficiently.</ pre >
73- </ div >
83+ handle large files efficiently.</ p >
7484 < h2 > Resources</ h2 >
7585 < ul >
7686 < li > < a href ="ReadMe.txt "> ReadMe.txt</ a > </ li >
77- < li > < a href ="TextAnalysisTool.NET.txt "> TextAnalysisTool.NET.txt </ a > </ li >
87+ < li > < a href ="TextAnalysisTool.NET.txt "> Documentation </ a > </ li >
7888 < 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 >
89+ < li > < a href ="//dlaa.me/blog/tag/textanalysistool "> Related blog content</ a > </ li >
90+ </ ul >
91+ < h2 > Feedback</ h2 >
92+ < ul >
93+ < li > < a href ="https://github.com/TextAnalysisTool/Releases/issues "> Issue tracker</ a > </ li >
8094 </ ul >
8195 </ body >
8296</ html >
0 commit comments