-
Notifications
You must be signed in to change notification settings - Fork 47
/
unique-word-extractor.html
204 lines (195 loc) · 9.34 KB
/
unique-word-extractor.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
---
title: Make Word List - Extract Unique Words From A Text | Developer Tools
layout: post
---
<html>
<head>
<!-- Meta tags common for website -->
{% include common-meta %}
<title>{{ page.title }}</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<meta name="description"
content="This is easy to use open source tool to extract all unique words from a text, paragraph or large sentences." />
<meta name="keywords" content="online,tool,unique,text,extract,word,opensource" />
<!-- CSS for the site theme -->
{% include theme-css %}
<!-- Annoying IE fixes -->
{% include ie-fixes %}
</head>
<body class="hold-transition skin-green sidebar-mini">
<!-- Site wrapper -->
<div class="wrapper">
<!-- header tag from theme -->
{% include theme-header %}
<!-- Sidebar for the whole website -->
{% include theme-sidebar %}
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Main content -->
<section class="content">
<div class="row">
<!-- left column -->
<div class="col-md-6">
<div class="box box-success">
<div class="box-header with-border">
<h1 class="box-title">Make Word List From Any Text</h1>
</div>
<!-- /.box-header -->
<!-- form start -->
<div class="box-body">
<form role="form">
<div class="form-group">
<label for="htm">Text Input</label>
<textarea class="form-control" rows="15" id="text"
placeholder="Enter your Text here" autofocus></textarea>
<div style="display:none;" id="hidden"></div>
</div>
</form>
</div>
<!-- /.box-body -->
<div class="box-footer">
<div class="row">
<div class="col-xs-3">
<button type="button" class="btn btn-info" id="submit">Extract Unique Words <i
class="fa fa-fw fa-arrow-right"></i></button>
</div>
</div>
</div>
<!-- /.box-footer -->
</div>
</div>
<div class="col-md-6">
<div class="box box-success">
<div class="box-header with-border">
<h3 class="box-title">Copy Your Unique Words From Here</h3>
</div>
<!-- /.box-header -->
<div class="box-body">
<div class="form-group">
<label for="result">Unique Words List</label>
<textarea class="form-control" id="result" rows="15"
placeholder="Copy your unique words list from here"></textarea>
</div>
<div class="form-group">
<label for="totalcount">Unique Words Count</label>
<h4 class='text-green' id="totalcount"> 0 </h4>
</div>
</div>
<!-- /.box-body -->
</div>
</div>
</div>
</section>
<section class="content">
<div class="box box-success">
<div class="box-header with-border">
<h3 class="box-title">About Unique Word Extractor Tool</h3>
</div>
<!-- /.box-header -->
<div class="box-body">
<img class="img-responsive" src="images/unique-words.png"
alt="Online Unique word extraction Tool" title="Online Unique word extraction Tool">
<p>This is a free online tool to extract unique words from any plain text. The tool also shows the number of unique words extracted. You can just copy/paste the new line separated words from the result text box.</p>
</div>
<!-- /.box-body -->
</div>
<div class="box box-success">
<div class="box-header with-border">
<h3 class="box-title">What is a word list?</h3>
</div>
<!-- /.box-header -->
<div class="box-body">
<p>Word lists are useful way to memorize certain words. This tool makes it easy to find unique
words from any text and create a list. This word list finder is used by many people to create their ad campaigns based on selected words.</p>
</div>
<!-- /.box-body -->
</div>
<div class="box box-success">
<div class="box-header with-border">
<h3 class="box-title">What is a unique word?</h3>
</div>
<!-- /.box-header -->
<div class="box-body">
<p>In plain text, many words are repeated. This tool can help you identify all the words that
are present.</p>
</div>
<!-- /.box-body -->
</div>
<div class="box box-success">
<div class="box-header with-border">
<h3 class="box-title">What Is The use of unique words?</h3>
</div>
<!-- /.box-header -->
<div class="box-body">
<p>Unique words can be used to identify many things. e.g. Many SEO experts may use it for
keyword densityand other analysis purposes. </p>
<p>Unique words are handy to create word clouds too. Just throw these words into a word cloud
maker and it will do the magic. </p>
</div>
<!-- /.box-body -->
</div>
<div class="box box-success">
<div class="box-header with-border">
<h3 class="box-title">Can I Use This Tool for languages other than english?</h3>
</div>
<!-- /.box-header -->
<div class="box-body">
<p>Yes, this tool can easily be used for any text and can help you identify all unique words.
Give it a try. </p>
</div>
<!-- /.box-body -->
</div>
<div class="box box-success">
<div class="box-header with-border">
<h3 class="box-title">How many words can this tool support?</h3>
</div>
<!-- /.box-header -->
<div class="box-body">
<p>This tool uses browser memory to process the text. It can support a very large text depending
on your browser. </p>
<p>On a Macbook Pro it can easily identify several thousand words </p>
</div>
<!-- /.box-body -->
</div>
</section>
{% include addthis %}
</div>
<!-- /.content-wrapper -->
{% include theme-footer %}
</div>
<!-- ./wrapper -->
{% include theme-bottom-js %}
</body>
<script src="plugins/selectOnFocus/jquery.selectOnFocus.min.js"></script>
<script>
const Page = {
request: {}
};
const clear = function () {
$('#error').text('');
$("#totalcount").val('0');
Page.request = {};
};
$(document).ready(function () {
var text = $("#text")
$("#submit").click(function () {
clear();
Page.request.txt = text.val();
if (Page.request.txt) {
const words = Page.request.txt.split(' ');
const cleansedWrods = (words || []).filter(w => w && w.trim());
const uniqueWords = Array.from(new Set([...cleansedWrods]));
$("#result").val(uniqueWords.join("\n"));
Page.request.uniqueWordsCount = uniqueWords.length;
$("#totalcount").text(Page.request.uniqueWordsCount);
} else {
$('#error').text('Text input required');
}
});
$("#text").selectOnFocus();
$("#result").selectOnFocus();
$('#converters-category').addClass('active');
});
</script>
</html>