Tagged Questions
The text-processing tag has no wiki summary.
30
votes
16answers
3k 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 some of them. AWK ...
16
votes
11answers
25k views
How to use sed to replace only the first occurrence in a file?
I want to update a large number of C++ source files with an extra include directive before any existing #includes. For this sort of task I normally use a small bash script with sed to re-write the ...
16
votes
11answers
12k views
How can I extract a range of lines from a text file on unix?
I have a ~23000 line sql dump containing several databases worth of data. I need to extract a certain section of this file (i.e. the data for a single database) and place it in a new file. I know both ...
12
votes
10answers
600 views
Code for identifying programming language in a text file
i'm supposed to write code which when given a text file (source code) as input will output which programming language is it. This is the most basic definition of the problem. More constraints follow:
...
11
votes
5answers
626 views
How does uʍop-ǝpᴉsdn text work?
I have found upside down text in this website: http://www.cheesygames.com/upside-down-text
how does it work? does unicode have upside down chars? Or what?
How can I write my own text flipping ...
10
votes
5answers
2k 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 word groups (i.e. ...
10
votes
10answers
615 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 these individual ...
9
votes
9answers
1k views
Perl or Python: Convert date from dd/mm/yyyy to yyyy-mm-dd
I have lots of dates in a column in a CSV file that I need to convert from dd/mm/yyyy to yyyy-mm-dd format. For example 17/01/2010 should be converted to 2010-01-17.
How can I do this in Perl or ...
9
votes
6answers
200 views
Optimize a list of text additions and deletions
I've got a list containing positions of text additions and deletions, like this:
Type Position Text/Length
1. + 2 ab // 'ab' was added at position 2
2. + 1 ...
8
votes
4answers
474 views
How to find out if a sentence is a question (interrogative)?
Is there an open source Java library/algorithm for finding if a particular piece of text is a question or not?
I am working on a question answering system that needs to analyze if the text input by ...
8
votes
6answers
674 views
Algorithm for Negating Sentences
I was wondering if anyone was familiar with any attempts at algorithmic sentence negation.
For example, given a sentence like "This book is good" provide any number of alternative sentences meaning ...
7
votes
6answers
1k views
How do I identify language of a text document in Java?
Is there an existing Java library that could tell me whether a String contains English language text or not (e.g. I need to be able to distinguish French or Italian text -- the function needs to ...
6
votes
4answers
356 views
How does a BufferedReader work in Java?
I am processing a number of text files line by line using BufferReader.readlline().
Two files having same size 130MB but one take 40sec to get processed while other takes 75 sec when
I noticed one ...
6
votes
4answers
213 views
Big text file processing
I need to implement lazy loading in Mathematica. I have a 600 Mb CSV text file which I need to process. This file contains a lot of duplicated records:
1;0;0;13;6
1;0;0;13;6
..........
2;0;0;13;6
...
5
votes
8answers
869 views
Efficiently parsing a large text file in C#
I need to read a large space-seperated text file and count the number of instances of each code in the file. Essentially, these are the results of running some experiments hundreds of thousands of ...
5
votes
4answers
563 views
Estimating the word count of a file without reading the full file
I have a program to process very large files. Now I need to show a progress bar to show the progress of the processing. The program works on a word level, read one line at a time, splitting it into ...
5
votes
6answers
712 views
Fast Text Preprocessing
In my project I work with text in general. I found that preprocessing can be very slow. So I would like to ask you if you know how to optimize my code. The flow is like this:
get HTML page -> (To ...
5
votes
1answer
436 views
Given a document, select a relevant snippet
When I ask a question here, the tool tips for the question returned by the auto search given the first little bit of the question, but a decent percentage of them don't give any text that is any more ...
5
votes
6answers
940 views
Sed script to edit csv file Or Python
In our project we need to import the csv file to postgres.
There are multiple types of files meaning the length of the file changes as some files are with fewer columns and some with all of them.
We ...
5
votes
5answers
471 views
How can I sum values in column based on the value in another column?
I have a text file which is:
ABC 50
DEF 70
XYZ 20
DEF 100
MNP 60
ABC 30
I want an output which sums up individual values and shows them as a result. For example, total of all ABC values in the file ...
5
votes
2answers
319 views
How to strip headers/footers from Project Gutenberg texts?
I've tried various methods to strip the license from Project Gutenberg texts, for use as a corpus for a language learning project, but I can't seem to come up with an unsupervised, reliable approach. ...
5
votes
8answers
671 views
“Absolute” string metric
I have a huge (but finite) set of natural language strings.
I need a way to convert each string to a numeric value. For any given string the value must be the same every time.
The more "different" ...
4
votes
2answers
127 views
Replace Long list Words in a big Text File
i need a fast method to work with big text file
i have 2 files,
a big text file (~20Gb)
and an another text file that contain ~12 million list of Combo words
i want find all combo words in the ...
4
votes
1answer
119 views
Determining frequency of an array in Python
I have a sample file filled with floating point numbers as follows:
-0.02 3.04 3.04 3.02 3.02 3.06 3.04 3.02 3.04 3.02 3.04 3.02
3.04 3.02 3.04 3.04 3.04 3.02 3.04 3.02 ...
4
votes
2answers
122 views
Save a specific part of a huge text file (over 2GB)
I have large log files which contains timestamps every one second.what I need is to cut a user defined part from this huge file and save it in another text file..i am confused since the fstream class ...
4
votes
4answers
67 views
Running a macro till the end of text file in Emacs
I have a text file with some sample content as shown here:
Sno = 1p
Sno = 2p
Sno = 3p
What i want is to remove the p from each of the columns.
With this intention i write a macro:
M-x //go to ...
4
votes
2answers
332 views
preferred way to implement 'yield' in Scala?
I am doing writing code for PhD research and starting to use Scala. I often have to do text processing. I am used to Python, whose 'yield' statement is extremely useful for implementing complex ...
4
votes
2answers
117 views
Regex doesn't matches
I've a trouble with regexp in such situation:
I need to extract (and replace) all dots from such construction:
any_symbols->white_space->x.(or xx. or Xx. or xX. or xy. or yy. ...
4
votes
2answers
191 views
Find similar words by pronunciation - algorithms, approaches, libraries
By 'table' it should find 'cable', 'tabular' etc.
E.g. like you type the word in type in dictionary and it says may be you wanted word1, word2 which are close in spell to the one I typed.
What is ...
4
votes
3answers
124 views
Anomaly in text
Let me explain with an example.
We have the following text:
"Comme Il Faut was founded in 1927. The tobacco company is most well known for its reputation of producing customized private label ...
4
votes
4answers
492 views
summarize text or simplify text
Is there any library, preferably in python but at least open source, that can summarize and or simplify natural-language text?
4
votes
4answers
402 views
Parse string into a tree structure?
I'm trying to figure out how to parse a string in this format into a tree like data structure of arbitrary depth.
"{{Hello big|Hi|Hey} {world|earth}|{Goodbye|farewell} {planet|rock|globe{.|!}}}"
...
4
votes
4answers
191 views
Regex for finding an unterminated string
I need to search for lines in a CSV file that end in an unterminated, double-quoted string.
For example:
1,2,a,b,"dog","rabbit
would match whereas
1,2,a,b,"dog","rabbit","cat bird"
...
4
votes
2answers
249 views
details on the following Natural Language Processing terms?
Named Entity Extraction (extract ppl, cities, organizations)
Content Tagging (extract topic tags by scanning doc)
Structured Data Extraction
Topic Categorization (taxonomy classification by scanning ...
4
votes
5answers
427 views
processing text from a non-flat file (to extract information as if it *were* a flat file)
I have a longitudinal data set generated by a computer simulation that can be represented by the following tables ('var' are variables):
time subject var1 var2 var3
t1 subjectA ...
t2 subjectB ...
4
votes
2answers
508 views
Unicode Strings in Ruby 1.9
I've written a Ruby script that is reading a file (File.read()) that contains unicode characters, and it works fine from the command line.
However, when I try to put it into an Automator Workflow ...
4
votes
7answers
342 views
Put bar at the end of every line that includes foo
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 expresses the different ...
4
votes
3answers
169 views
Text manipulation while keeping original position offsets
I need to manipulate large strings in Java (deleting and adding the deleted
chars again, moving chars around), but still want to remember the
original position offsets. E.g. the word "computer" starts ...
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 ...
4
votes
7answers
3k views
Algorithm to estimate number of English translation words from Japanese source
I'm trying to come up with a way to estimate the number of English words a translation from Japanese will turn into. Japanese has three main scripts -- Kanji, Hiragana, and Katakana -- and each has a ...
3
votes
2answers
53 views
How to flip text horizontally?
i'm need to write a function that will flip all the characters of a string left-to-right.
e.g.:
Thė quiçk ḇrown fox jumṕềᶁ ovểr thë lⱥzy ȡog.
should become
.goȡ yzⱥl ëht rểvo ᶁềṕmuj xof ...
3
votes
2answers
44 views
extract optional field values from lines
I have text in the form of separate lines, where each line has CSV-like format:
SOME BUNCH OF TEXT, FIELD_A: 12, FIELD_B: 0.2321, FIELD_C: 12:10:08 2011/07/22, FIELD_D: 656
The order of fields is ...
3
votes
2answers
111 views
BASH: importing data from flat file into template
I have a flat file of records, each 33 lines long. I need to format this file to specs in a template. The template is in DOS format while the source file is in NIX format. The template has specific ...
3
votes
5answers
114 views
How do I join pairs of consecutive lines in a large file (1 million lines) using vim, sed, or another similar tool?
I need to move the contents of every second line up to the line above such that line2's data is alongside line1's, either comma or space separated works.
Input:
line1
line2
line3
line4
Output:
...
3
votes
3answers
93 views
phonetic spelling in Python and Java
I am trying to build a system that accepts text and outputs the phonetic spelling of the words of this text. Any ideas on what libraries can be used in Python and Java?
3
votes
3answers
167 views
How could I remove newlines from all quoted pieces of text in a file?
I have exported a CSV file from a database. Certain fields are longer text chunks, and can contain newlines. What would be the simplest way of removing only newlines from this file that are inside ...
3
votes
2answers
62 views
Conditional Splitting in Perl
I have the following sentences:
my $sent = 'D. discoideum and D. purpureum developmental programs revealed';
Is there a way I can split the lines so that two consecutive words that have '.' (dot) ...
3
votes
3answers
59 views
Prioritizing text based on content
If you have a list of texts and a person interested in certain topics what are the algorithms dealing with choosing the most relevant text for a given person?
I believe that this is quite a complex ...
3
votes
2answers
83 views
XML text processing
In my complex XML stored already just as String I have to make some text/xml-processing. The goal is to find the beginning index of some given node. Apart node (Node/Element class reference) I have ...
3
votes
3answers
160 views
Trouble splitting a String with Python
I'm desperatly trying to split a string using Python but the text file I need to parse is a little bit tricky:
The text file is a comma separated data file
I did the following:
import fileinput
...