0
votes
8answers
192 views
How can I filter a large file into two separate files?
I've got a huge file (500 MB) that is organized like this:
<link type="1-1" xtargets="1;1">
<s1>bunch of text here</s1>
<s2>some more here</s2&g …
0
votes
4answers
37 views
Getting word count for all files within a folder
I need to find word count for all of the files within a folder.
Here is the code I've come up with so far:
$f="../mts/sites/default/files/test.doc";
// count words
$numWords = s …
2
votes
6answers
97 views
How can I delete all lines that do not begin with certain characters?
I need to figure out a regular expression to delete all lines that do not begin with either "+" or "-".
I want to print a paper copy of a large diff file, but it shows 5 or so lin …
1
vote
7answers
93 views
How to read, in a line, all characters from column A to B
Hi,
is it possible in Python, given a file with 10000 lines, where all of them have this structure:
1, 2, xvfrt ert5a fsfs4 df f fdfd56 , 234
or similar, to read the whole …
1
vote
0answers
21 views
what is the best language to process ebooks in different formats
I have a collection of ebooks in different formats (e.g pdf, lit, chm, and other), I would like to extract the first page of each book and have it in plain text.
What would be the …
3
votes
6answers
197 views
Algorithms to detect phrases and keywords from text
I have around 100 megabytes of text, without any markup, divided to approximately 10,000 entries. I would like to automatically generate a 'tag' list. The problem is that there are …
1
vote
5answers
70 views
how to get the similar texts from a lot of pages?
get the x most similar texts from a lot of texts to one text.
maybe change the page to text is better.
You should not compare the text to every text, because its too slow.
4
votes
7answers
282 views
Put bar at the end of every line that includes foo
Hi,
I have a list with a large number of lines, each taking the subject-verb-object form, eg:
Jane likes Fred
Chris dislikes Joe
Nate knows Jill
To plot a network graph that …
2
votes
2answers
70 views
Classifying Text Based on Groups of Keywords?
I have a list of requirements for a software project, assembled from the remains of its predecessor. Each requirement should map to one or more categories. Each of the categories c …
7
votes
10answers
303 views
Finding dictionary words
I have a lot of compound strings that are a combination of two or three English words.
e.g. "Spicejet" is a combination of the words "spice" and "jet"
I need to separate the …
1
vote
6answers
218 views
Using Awk to process a file where each record has different fixed-width fields.
I have some data files from a legacy system that I would like to process using Awk. Each file consists of a list of records. There are several different record types and each rec …
0
votes
5answers
187 views
How can I remove all non-word characters except the newline?
I have a file like this:
my line - some words & text
oh lóok i've got some characters
I want to 'normalize' it and remove all the non-word characters. I want to end up with …
1
vote
2answers
107 views
VIM: how to compute the number of times word appeared in a file or in some range
Sometimes, I want to see how many times a certain function is called in a file or a code block. How do you do that? I am using vi 7.2.
I presume you have to use !wc or some such. …
1
vote
2answers
60 views
Text Processing with Program Instead of Perl
I have a .plist file that looks like this:
<plist version="1.0">
<array>
<dict>
<key>name</key>
<string>Alabama</string>
< …
19
votes
16answers
1k views
Is there still any reason to learn AWK ?
I am constantly learning new tools, even old fashioned ones, because I like to use the right solution for the problem.
Nevertheless, I wonder if there is still any reason to learn …
