Tagged Questions
The text-manipulation tag has no wiki summary.
12
votes
5answers
138 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 ...
7
votes
6answers
257 views
Obfuscating email in html
I'm currently developing a website, into which I've included a filter that attempts to obfuscate any e-mail addresses present in the webpages it serves.
As it is now, it converts the addresses into ...
6
votes
6answers
395 views
how to create exclamations for a particular sentence
I would like to create exclamations for a particular sentence using the java API?
e.g. It's surprising == Isn't it surprising!
e.g. It's cold == Isn't it cold!
Are there any vendors or tools which ...
5
votes
3answers
2k views
excluding first and last lines from sed /START/,/END/
Consider the input:
=sec1=
some-line
some-other-line
foo
bar=baz
=sec2=
c=baz
If I wish to process only =sec1= I can for example comment out the section by:
sed -e '/=sec1=/,/=[a-z]*=/s:^:#:' ...
4
votes
2answers
231 views
Shift a region or line in emacs
I'm looking for a way in emacs to shift text to the right or to the left by n spaces. A similar functionality that it in vim << or >>. It should work on a region or if no region is ...
4
votes
2answers
402 views
Splitting a string with no line breaks into a list of lines with a maximum column count
I have a long string (multiple paragraphs) which I need to split into a list of line strings. The determination of what makes a "line" is based on:
The number of characters in the line is less than ...
2
votes
2answers
189 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
82 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 " & _
...
2
votes
2answers
345 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 ...
2
votes
8answers
110 views
extract value of an assignment expression
Suppose I have this string:
a b c d e=x f g h i
What's the best* way to extract the value x from e=x using only Linux commands (like sed and awk)?
*The definition of "best" is up to you.
2
votes
2answers
167 views
Get latest 100MB Of text file in linux
How do I get the latest 100MB from a text log on Linux? Is there a tool for it, or could you point me on a script?
I have no programming experience on Shell Scripting, Perl or Python, and I don't ...
1
vote
3answers
45 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
97 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
47 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 ...
1
vote
4answers
208 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
29 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:
...
1
vote
2answers
157 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
344 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 ...
1
vote
1answer
76 views
Easy way to add text above all methods in a solution in VS 2005?
A colleague was working on a Perl script to consume a C++ source file and add text above all of the methods in the file. He was looking to develop code using regular expressions from the ground up to ...
1
vote
4answers
848 views
How to split file on first empty line in a portable way in shell (e.g. using sed)?
I want to split a file containg HTTP response into two files: one containing only HTTP headers, and one containg the body of a message. For this I need to split a file into two on first empty line ...
1
vote
2answers
576 views
Insert text on the current place of the cursor in the browser
I have a modal window which helps formatting text.
I have multiple textareas on the window.
The modal should not be attached to a specific textarea, so when I press an Icon in the modal window, I need ...
1
vote
2answers
105 views
Excel parsing and converting text
I need to be able to convert cells from one format to another according to the following rules:
Property Description --enter as-- Folio Identifier
...
0
votes
0answers
50 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
94 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
...
0
votes
2answers
72 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 ...
0
votes
2answers
43 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
259 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
175 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 ...
0
votes
0answers
130 views
Word 2007 Add-In screwing up list formatting when changing text
Well, I already wasted quite some time now trying to find the reason for the following behaviour. Either my general idea is flawed or there's some unpredictable edge case or whatever. I'm using VS2008 ...
0
votes
2answers
126 views
Keyword Analyser [closed]
I want to know any algorithms or php code for working out keyword competition. The keyword can be used multiple sites per website and on multiple websites. I want to know how its ranking can be worked ...
0
votes
5answers
134 views
Bash: in directory `directory_name.git`, how to cd to `../directory_name`?
I'm pretty new to Bash scripting and am looking to do the following:
The script's pwd is "/a/b/c/directory_name.git/" and I'd like to cd to "../directory_name" where directory_name could be anything. ...
0
votes
2answers
373 views
Search an replace text in column for Column Type Text SQL Server
What I need is to search for a string in a specific column (datatype: text) of a table and replace it with another text.
For example
Id | Text
-----------------------------
1 ...
0
votes
0answers
153 views
text manipulation - add copyright information in the beginning of source code files
Please advise me on how to add copyright information to the beginning of source code files.
There are thousands of files out there which we want to add copyright information.
/**
* Copyright XYZ ...
0
votes
2answers
96 views
Text manipulation in Java
I have a string with this format:
"key=some value|otherkey=other value|key3=yet another value"
I need to create a function with this signature:
public String update(String all,String key, String ...
0
votes
5answers
42 views
Is there a Windows utility that will let me do multiple programmatic find/replaces on text that I cut & paste into it?
I've inherited some C# code that contains about a thousand lines of source that I need to modify, transforming it from this:
newDataRow["to_dir"] = comboBox108.Text;
To this:
...
0
votes
2answers
273 views
Text Manipulation Split Classes in a Single File into mulitple Files
I used XSD.EXE to to generate a C# files from an XSD schema. Unfortunately, this tool extracts all the classes into a single allClasses.cs file.
Has anyone got a good technique(or tool) that will ...
0
votes
4answers
130 views
Another preg_replace question!
Ive got a string that are words bunched together and I need to seperate them, and every word that ends in 'A' should probably be on a new line,
item onea second itema third
I also need to check if ...
0
votes
5answers
599 views
how to get a text from textbox that is betwen two dots
i just want to get a text from textbox that is betwen two dots for example. www. abc.org . h