The text-manipulation tag has no wiki summary.
0
votes
2answers
39 views
Sed Command delete before first instance and after last
I'm looking for a sed command to clean up some kml files I have. The files are all on a single line and look like this
<some text><kml><Document><name> Name ...
0
votes
2answers
42 views
How to manipulate text with awk?
How would I be able to manipulate the output text of grep.
Right now I am using the command:
grep -i "<url>" $file >> ./txtFiles/$file.txt
This would output something like this:
...
0
votes
2answers
87 views
Perl script for combining 2 files with multiple entries
I have a tab-delimited text file like this:
contig11 GO:100 other columns of data
contig11 GO:289 other columns of data
contig11 GO:113 other columns of data
contig22 GO:388 other columns of data
...
0
votes
1answer
65 views
Replace text with multiple unique values each time(AutoIt)
Is there any way to replace text that appears several times in a .txt file with a unique value each time? To be more specific:
This is the given document:
value="something"
other text lines
...
-1
votes
2answers
81 views
Bash/python/perl magic to get aggregate datetimes across multiple log files
I have a directory (/home/myuser/logs) that contains the following log files for the last 5 days:
applogs_20130402.txt
applogs_20130401.txt
applogs_20130331.txt
applogs_20130330.txt
Each line of ...
0
votes
0answers
43 views
PHP text manipulation library
I am developing in a web application that its main function is text manipulation. As you know PHP even does not support Unicode internally. (There is some elementry solution, mbstring extension and u ...
0
votes
0answers
35 views
Given an article, output in a format such that spaces between each word are equal
Given an article, output in a format that for each line, spaces between words are equal.If this can't be done discuss how will you manage it.
This is my solution, taking an extra string to save ...
0
votes
5answers
232 views
remove last line from multi-lined variable
couldn't find a solution to this seemingly simple question: how can i remove the few lines from a multi-lined variable?
i'm getting this sort of stuff back from Expect and need to neaten it up a ...
0
votes
2answers
94 views
How to use Python to find a string in a line and change the text n lines after the string
I need to find every instance of "translate" in a text file and replace a value 4 lines after finding the text:
"(many lines)
}
}
translateX xtran
...
1
vote
0answers
69 views
ImageMagick interline-spacing alternative - Go Daddy has older version
I'm building a web page where the user types a paragraph, and ImageMagick block justifies the paragraph and overlays onto a graphic.
After studying and getting excited about the documentation, I've ...
4
votes
4answers
120 views
put all separate paragraphs of a file into a separate line
I have a file that contains sequence data, where each new paragraph (separated by two blank lines) contain a new sequence:
#example
ASDHJDJJDMFFMF
AKAKJSJSJSL---
SMSM-....SKSKK
....SK
...
0
votes
0answers
130 views
jquery show more text based on container height
I looked for a plugin that truncates text and adds a (more) link to it based on container height not char limit of text. I couldn't find one.
Looks like ill have to write one myself. The question ...
-1
votes
4answers
62 views
Replace text with regular expressions in a text editor
I need to edit lines in a text file.
The text files contains more than 100 lines of data in the below format.
Cosmos Rh Us (Paperback) $10.99 Shipped:
The Good Earth (Paperback) $6.66 ...
1
vote
4answers
80 views
How can I remove all characters in each line after the first space in a text file?
I have a large log file from which I need to extract file names.
The file looks like this:
/path/to/loremIpsumDolor.sit /more/text/here/notAlways/theSame/here
/path/to/anotherFile.ext ...
0
votes
2answers
79 views
How to trim text to certain length, full sentences?
I'm looking for a solution for trimming an unknown text to certain length. Keeping only full sentences.
So text like this
"Were you born 1. 3. 1987 in Prague? Štěpán Jr. lives there for 3 years ...
1
vote
3answers
119 views
How do I count the times a text string occurs in Perl?
I am trying to count the occurences of a text string.
My Perl code below prints a statement (text string) when it finds certain types of files and I need to count up the times it prints the string.
...
1
vote
2answers
123 views
Inserting extra line breaks using VIM
I have an interview transcript with continuous text. At times, the names of the person speaking are written (Aron:, Kalle:, Tomas: etc.). I want to insert a line break before every name that is ...
-3
votes
3answers
196 views
Search, replace and swap strings in a text file using regex [closed]
I have a text file which contains many blocks on the form
XXX
Some random text. Let's call it text A
and it might span
several lines.
Some more random text. Let's call it
text B. It might also ...
0
votes
0answers
25 views
Diff library that can handle transposition by lines
Is there a diff library that can consider transpositions by lines in addition to the ordinary diff by characters, preferably but not necessarily with a Ruby binding? For example, if I had text A and ...
1
vote
1answer
231 views
Decoding unknown encoded Traditional Chinese character strings using Python
Hi I have a website that is in Traditional Chinese and when I check the site statistics it tell me that the search term for the website is å%8f°å%8d%97 親å%90é¤%90廳 which obviously makes no sense ...
1
vote
1answer
210 views
Convert Chinese characters in Percent-Encoded URI string to Chinese characters in UTF-8? [closed]
Okay, I am not sure if I am phrasing this correctly but I am given url in the following form:
http://zh.wikipedia.org/wiki/%E5%A4%A9%E6%96%87%E5%AD%B8
but I would to convert it into Chinese ...
1
vote
2answers
99 views
text-manipulation: how to exclude specific lines with sed
currelty i replace all the < in all the content with the following sed command
sed -e 's/\</</g''
but now i have to exclude the lines that contains <title>
to be exact i have to ...
2
votes
3answers
42 views
Text manipulation of strings containing “The ”
I have a table in a MySQL database which contains data like this;
ID text
1 Action Jackson
2 The impaler
3 The chubby conquistador
4 Cornholer
I want to display them in alphabetical order ...
2
votes
3answers
360 views
sed - comment a matching line and x lines after it
I need help with using sed to comment a matching lines and 4 lines which follows it.
in a text file.
my text file is like this:
[myprocess-a]
property1=1
property2=2
property3=3
property4=4
...
4
votes
5answers
405 views
How to capitalize some words in a text file?
I have a text file which have normal sentences. Actually I was in hurry while typing that file so I just capitalized the first letter of first word of the sentence (as per English grammar).
But now I ...
0
votes
0answers
25 views
What form to keep track of edit history
When you keep track of the edit history on some text, is there a normalized form or way that is commonly used by text editors? This should be different from just recording the texts at different ...
0
votes
2answers
80 views
php substr and text manipulation
I would like to take this data:
questionX
Where X is any number from zero to infinity.
And subtract the text question from the field, and save just the number.
I was toying with substr($data, 0, ...
0
votes
1answer
105 views
Get the multiple string between two strings in a file
I have a ".txt" file where I have a string say "Function supported" and "Function Description"
I have multiple lines between these two string starting with say "-".
How to get each line and apply some ...
1
vote
2answers
132 views
Transforming a sentence creates an infinite loop - but how?
I can't figure out where this is going wrong. Please note that I am very new to Prolog and I'm sure I'm missing something - just no idea what that might be. Could anyone help me out please?
Thanks, ...
0
votes
2answers
208 views
python regex to match any valid english sentence
I was wondering if it is possible to write a python regex to match it up with any valid English sentence which can have alphanumeric characters and special characters.
Basically, I wanted to extract ...
2
votes
1answer
69 views
Batch: Reordering numbers in a text file
I have a .txt file that contains a list of menu's and commands. What I want to be able to do is incrementally run through each line of this .txt file, check the number, and increment it from the ...
1
vote
1answer
160 views
PHP manipulate string (find/replace if component present)
I need to check a string using PHP for a particular text component and replace the value if it is present with a new value. For example I might have a string like this:
...
1
vote
3answers
77 views
What should I know about Python to identify comments in different source files?
I have a need to identify comments in different kinds of source files in a given directory. ( For example java,XML, JavaScript, bash). I have decided to do this using Python (as an attempt to learn ...
12
votes
5answers
231 views
PHP Repairing Bad Text
This is something I'm working on and I'd like input from the intelligent people here on StackOverflow.
What I'm attempting is a function to repair text based on combining various bad versions of the ...
2
votes
2answers
323 views
How does one merge texts together? like a version control system would?
Wikipedia says this is pretty good: http://en.wikipedia.org/wiki/Merge_(revision_control)#Three-way_merge
But how does one implement that? or are there any gems / plugins for Ruby on Rails that will ...
2
votes
1answer
286 views
A macro to convert a SQL query to a string concatenation and viceversa?
I'm working with Access and I have many queries in the code like
"SELECT something, something " _
& "FROM the_table " _
& "WHERE something Is Null "
or
"SELECT " & _
...
0
votes
0answers
204 views
Large text file manipulation
Seeking help on manipulating large text files. I'm not a programmer and apparently have some serious trouble with regex. The text files in question are an output of some tool that logs enormous amount ...
0
votes
3answers
1k views
How to slice off a string in Ruby using another string?
Say I have a sentence similar to the following:
The quick brown fox jumps over the lazy dog
I'd like to slice off everything before and including "jumps", so I am left with:
over the lazy dog
...
1
vote
3answers
105 views
RegEx to replace trailing string in specific format
How can I replace these trailing "N megapixels" strings with "" using Regular Expression (RegEx.Replace)?
Examples:
If we enter: "Powershot Yellow 12.1
Megapixels", the result would be: ...
1
vote
1answer
144 views
Are there any text-manipulation-tools specialized in source code?
Are there any free and open text-manipulation-tools for the command-line specialized in source code?
I especially would love a feature where I could just add a new method stub automatically or remove ...
1
vote
3answers
65 views
Javascript: how to get from textaeria filled with dots and stars get 0-1 array?
I want to create a simple javascript "life game" implementation. I want user to be capable of inputing his structures..
So we have a textaeria, user fills it with something like
*···
*·*·
**··
How ...
0
votes
2answers
328 views
Use last rows for suggesting types in SQL Server 2008 R2 Import Wizard
I use SQL Server to locally store data for statistical analysis. I create my tables from csv files that typically have hundreds of columns. Manually prescribing column names and types would be ...
4
votes
4answers
9k views
Java regex: newline + white space
should be simple, but I'm going crazy with it.
Given a text like:
line number 1
line number 2
line number 2A
line number 3
line number 3A
line number 3B
line number 4
I need the Java regex ...
1
vote
1answer
34 views
Add Content Next to the line of a given search pattern in ruby
I'm making a custom rails 3 generator, I want to add some content after the attributes line in the following locale file, for example, inserting "user: 'User'"
es:
activerecord:
attributes:
...
0
votes
2answers
141 views
Shortening lines in a .txt file using terminal
I have a .txt file that has 98 lines. I need to shorten each of these lines so that I only have the first 14 characters in each line. How do I go about doing this?
0
votes
1answer
701 views
Extracting strings from binary file using regex and converting to ASCII — Using Perl
Trying to figure out how to extract a string off characters from a binary file and convert them to ascii. The characters are a barcode, which is preceded by a constant string of text. My thought is to ...
0
votes
3answers
431 views
Extracting “plaintext” header from HEX file using Perl
Have a file that appears to have plaintext headers in them that I would like to extract and convert to plaintext.
Using HEXedit, this is what I'm seeing, which is in a file:
3a40 - 31 65 33 38 00 00 ...
2
votes
2answers
2k views
Edit configuration file through python
I need to edit a configuration file through python and i tried searching on stackoverflow and google and they don't cover my situation, since i need to replace lines in the file and perform matches in ...
1
vote
2answers
237 views
How do I chunk the records in SQL Server 2005?
lets say i have a column Name in tableA
Name
jennifer Hughs
Mike nadrotosky
Arnold Woods
Raj Jai Soni
so how do i put these results in seperate 3 columns like
FirstName MiddleName LastName
...
1
vote
1answer
2k views
Find url in plain text and insert HTML A markups
I have text with URL and I need to wrap them with HTML A markup, how to do that in c#?
Example, I have
My text and url http://www.google.com The end.
I would like to get
My text and url <a ...


