Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
1k views

Correct word-count of a LaTeX document

I'm currently searching for an application or a script that does a correct word count for a LaTeX document. Up till now, I have only encountered scripts that only work on a single file but what I ...
7
votes
2answers
353 views

A PHP Library / Class to Count Words in Various Languages?

Some time in the near future I will need to implement a cross-language word count, or if that is not possible, a cross-language character count. By word count I mean an accurate count of the words ...
6
votes
3answers
1k views

Word count in Rails?

Say I have a blog model with Title and Body. How I do show the number of words in Body and characters in Title? I want the output to be something like this Title: Lorem Body: Lorem Lorem Lorem This ...
4
votes
3answers
173 views

Parallel distinct word count in Go

Jakob Østergaard presented this challenge: Write a program that reads text from standard-input, and returns (prints) the total number of distinct words found in the text. How can we meet this ...
4
votes
3answers
414 views

Quantifying the amount of change in a git diff?

I use git for a slightly unusual purpose--it stores my text as I write fiction. (I know, I know...geeky.) I am trying to keep track of productivity, and want to measure the degree of difference ...
4
votes
4answers
423 views

Reliably getting a character count for .doc files

What's a reliable way to automatically count the characters and/or words in a .doc or .docx file? The only real requirement is a reasonably accurate and reasonably reliable count. It needs to work ...
4
votes
1answer
3k views

Using SQL to determine word count stats of a text field

I've recently been working on some database search functionality and wanted to get some information like the average words per document (e.g. text field in the database). The only thing I have found ...
3
votes
5answers
526 views

Javascript word count cut off

I have a div with an ID "shortblogpost". I would like to count up to 27th word then stop and add "..." at the end. I was trying the following code. Problem, Its counting letters and not words. I ...
3
votes
2answers
536 views

Hadooop map reduce

Im very much new to map reduce and i completed hadoop wordcount example. In that example it produces unsorted file (with key value) of word counts. So is it possible to make it sorted according to ...
2
votes
4answers
72 views

Source code words and line counting in netbeans 7.x?

I am Computer Science student and working on a project in java through netbeans 7.0.1 to be submitted in college, Today my faculty asked me how much your project is completed and i confidently replied ...
2
votes
4answers
271 views

Objective-C: -[NSString wordCount]

What's a simple implementation of the following NSString category method that returns the number of words in self, where words are separated by any number of consecutive spaces or newline characters? ...
2
votes
5answers
166 views

How to test word count program if there is any uncovered bugs?

I just revisited the classic C textbook K&R. And read the exercise 1-11: How would you test the word count program? What kinds of input are most likely to uncover bugs if there are any? ...
2
votes
2answers
1k views

Use a RegularExpressionValidator to limit a word count?

I want to use an ASP.NET RegularExpressionValidator to limit the number of words in a text box. (The RegularExpressionValidator is my favoured solution because it will do both client and server side ...
1
vote
4answers
74 views

How to count words in JavaScript using JQuery

I have a simple html text box. When I "submit" the form that the text box is in, I would like to get a variable with the number of words inside using Jquery. I would also like to check if the ...
1
vote
2answers
119 views

how to get a word count on word document in python?

I am trying to get the word counts of .doc .docx .odt and .pdf type files. This is pretty simple for .txt files but how can I go about doing a word count on the mentioned types? I'm using python ...
1
vote
5answers
281 views

How do I count repeated words?

Given a 1GB(very large) file containing words (some repeated), we need to read the file and output how many times each word is repeated. Please let me know if my solution is high performant or not. ...
1
vote
1answer
323 views

Wordcount C++ Hadoop pipes does not work

I am trying to run the example of wordcount in C++ like this link describes the way to do : Running the WordCount program in C++. The compilation works fine, but when I tried to run my program, an ...
1
vote
1answer
431 views

Hadoop wordcount unable to run - need help on decoding the hadoop error message

I need some help on figuring out why my job failed. I built a single node cluster just to try it out. I follow the example link ...
1
vote
2answers
107 views

Unique word count

This is a generic question that applies to (probably) any high-level programming language. Here is the situation: Suppose I have an array of strings. Say, I managed to put 500 000 strings from a ...
1
vote
5answers
2k views

Regular Expression for accurate word-count using JavaScript

I'm trying to put together a regular expression for a JavaScript command that accurately counts the number of words in a textarea. One solution I had found is as follows: ...
1
vote
2answers
427 views

Counting Word Frequency (most significant words) in a String, excluding keywords

I would like to count the frequency of words (excluding some keywords) in a string and sort them DESC. So, how can i do it? In the following string... This is stackoverflow. I repeat stackoverflow. ...
1
vote
1answer
400 views

The best way to extract all unicode text in a PDF file in .Net?

I am using itextsharp 5.1.1 to extract all text to count all words in it with the following code public static string GetTextFromAllPages(String pdfPath) { PdfReader reader = new ...
1
vote
3answers
551 views

What is the most efficient way to count all of the words in a richtextbox?

I am writing a text editor and need to provide a live word count. Right now I am using this extension method: public static int WordCount(this string s) { s = s.TrimEnd(); if ...
0
votes
0answers
43 views

Advice on implementing a SplayTree that takes Key-Value pairs as nodes in Java for counting words

I have to use a SplayTree structure to store and sort words found in a document by the number of occurences of each distinct word. I have already tried using a custom Pair class with and then adding ...
0
votes
1answer
57 views

Determining word count using grep (in cases where there are multiple words in a line)

Is it possible to determine the number of times a particular word appears using grep I tried the "-c" option but this returns the number of matching lines the particular word appears in For example ...
0
votes
2answers
63 views

How to get information about the current page of a paginated post in Wordpress?

Any suggestions on how I might get the word count of the current page of a paginated post in Wordpress? And in general, how to get information about only the current page of a paginated post ...
0
votes
2answers
292 views

getting error when executing Cassandra WordCount on Hadoop: java.lang.NoSuchMethodError: org.apache.thrift.meta_data.FieldValueMetaData.<init>(BZ)V

Trying to execute WordCount example from cassandra and getting an error: Exception in thread "main" java.lang.NoSuchMethodError: org.apache.thrift.meta_data.FieldValueMetaData.(BZ)V at ...
0
votes
2answers
57 views

If statement problem in jQuery

My if statement in jQuery seems to be breaking this code and I cannot figure out why:( here is a bit of the code: $(document).ready(function wordCount() //init { $('#text_area').keyup(function () ...
0
votes
2answers
84 views

Jquery word counter without maximum number

Could you suggest any word counter in jquery which doesn't have maxcount option ? I have looked for many plugins but all of them limits the maximum word number. I would like to have a function which ...
0
votes
1answer
166 views

Replace all non latin characters with their latin a-z counterparts and word count in VBA

I am trying to write a script in VBA that will: replace all É and other similar characters with their latin counterparts. Remove all non alpha numeric characters. Remove duplicate spacing then ...
0
votes
1answer
381 views

map reduce word count example doesn't work

I try to implement the word count example by myself, here's my implementation of the mapper: public static class Map extends Mapper<LongWritable, Text, Text, IntWritable> { public void ...
0
votes
3answers
308 views

Nested backticks in bash script not working

I'm trying the following in a bash script: COUNT=`cat "$NEWLIST" | wc -l | awk \' { print $1 } \` ` where NEWLIST is a string containing a list of files, one per line. But I get this error: ...
0
votes
2answers
188 views

C++ Qt WordCount and large data sets

I want to count words occurrences in a set of plain text files. Just like here http://doc.trolltech.com/4.5/qtconcurrent-wordcount-main-cpp.html The problem is that i need to process very big amount ...
0
votes
1answer
337 views

help needed with a jquery word counter (adding maximum words)

I need some help with adding a max_word value to a jquery word counter that I found (http://roshanbh.com.np/2008/10/jquery-plugin-word-counter-textarea.html) I've modified the above code slightly as ...
0
votes
6answers
217 views

What is the fastest way to validate that a field has no more than n words?

I have a Ruby-on-Rails model: class Candidate < ActiveRecord::Base validates_presence_of :application_essay validate :validate_length_of_application_essay protected def ...
0
votes
3answers
3k views

Limit Word Count of A Textfield in JQuery

I'm modding some jquery code to limit the word count of a textfield but I can't figure out how to get the value. Here's the code: <script> var $limitWords = 20; var $wordCount = ...
0
votes
2answers
918 views

AppleScript Word Count Service

I am trying to create a service in OSX leopard that counts the number of words of selected text. I have automator set to run an applescript, with the following put in it: on run {input, parameters} ...
0
votes
2answers
540 views

Word count in a Notes Text Field

I want to limit the number of words a person can enter in a text field. How can I track the number of words (by using a second field) in that field as each word is entered?
-1
votes
1answer
220 views

How to go about creating a word count program?

The program should accept file names as input and then print three numbers showing: the count of lines count of words words count of characters in the file. Im really not sure where to start on ...