Tagged Questions
The search-and-replace tag has no wiki summary.
22
votes
8answers
15k views
Awk/Sed: How to do a recursive find/replace of a string?
How to I find and replace every occurrence of:
subdomainA.example.com
with
subdomainB.example.com
in every text file under the /home/www/ directory tree (recursive find/replace).
21
votes
3answers
11k views
Javascript multiple replace
How do you replace all instances of one string with another in javascript?
Example:
someString = 'the cat looks like a cat'
anotherString = someString.replace('cat', 'dog');
results in ...
18
votes
9answers
1k views
Is str.replace(..).replace(..) ad nauseam a standard idiom in Python?
For instance, say I wanted a function to escape a string for use in HTML (as in Django's escape filter):
def escape(string):
"""
Returns the given string with ampersands, quotes ...
17
votes
2answers
700 views
Case preserving substitute in Vim
Can this can be done in Vim?
What I mean is: searching for 'BadJob'
and replacing with 'GoodJob' would do
the following replacements
'badjob' -> 'goodjob'
'BadJob' -> 'GoodJob'
...
14
votes
6answers
564 views
keep HTMLformat after replace some text (using PHP and JS)
I would like modify HTML like
I am <b>Sadi, novice</b> programmer.
to
I am <b>Sadi, learner</b> programmer.
To do it I will search using a string "novice programmer". How ...
14
votes
1answer
3k views
Emacs: Regular Expression Replacing to Change Case
Every once in a while I want to replace all instances of values like:
<BarFoo>
with
<barfoo>
i.e. do a regular expression replace of all things inside angle brackets with its ...
13
votes
4answers
2k views
Search and replace in VIM across all the project files
I'm looking for the best way to do search-and-replace (with confirmation) across all project files in VIM. By "project files" I mean files in the current directory, some of which do not have to be ...
13
votes
2answers
9k views
Eclipse, regular expression search and replace
In eclipse, is it possible to use the matched search string as part of the replace string when performing a regular expression search and replace?
Basically, I want to replace all occurrences of
...
9
votes
6answers
670 views
Using vi, how can I make CSS rules into one liners?
Example bad:
#main {
padding:0;
margin: 10px auto;
}
Example good:
#main {padding:0;margin:10px auto;}
I have a ton of CSS rules that are taking up too many lines. And I cannot ...
9
votes
12answers
2k views
How would I create a VIM or Vi command to delete all text after a certain character for every line in a text file?
Scenario:
I have a text file that has pipe (as in the | character) delimited data.
Each field of data in the pipe delimited fields can be of variable length, so counting characters won't work (or ...
9
votes
5answers
10k views
How to program a text search and replace in PDF files
How would I be able to programmatically search and replace some text in a large number of PDF files? I would like to remove a URL that has been added to a set of files. I have been able to remove ...
8
votes
2answers
3k views
Vim search and replace by decrementing back-reference?
Given the following text in Vim:
[2] [3] [4]
I want to perform a search and replace and produce the following:
[1] [2] [3]
I know how to extract out the numbers using back-reference via search ...
7
votes
4answers
340 views
efficiently replace bad characters
I often work with utf-8 text containing characters like:
\xc2\x99
\xc2\x95
\xc2\x85
etc
These characters confuse other libraries I work with so need to be replaced.
What is an ...
7
votes
4answers
282 views
Search/Replace in Vim
I want to delete all occurrences of square brackets that conform to this regex: \[.*\].*{, but I only want to delete the brackets, not what follows - i.e., I want to delete the brackets and what's ...
7
votes
3answers
369 views
Convert vim / search to search and replace without retyping regular expression
When I perform a search and replace in Vim, I like to use the search function (/regex) first to visually test my regex.
Is there a simple way to bring up the expression I wrote in a search and ...
7
votes
2answers
257 views
VIM: how to replace a word
I guess, the problem is pretty common. Let's say, we have a source file and wish to replace some string with another string.
Usually, I use the following command:
:%s/test/testValue/gc
But, what ...
7
votes
6answers
9k views
Can you delete a column of text in Vim / Vi / gVim?
Say I have the following style of lines in a text file:
"12" "34" "some text "
"56" "78" "some more text"
.
.
.
etc.
I want to be able to remove the quotes surrounding the first two columns. ...
6
votes
4answers
98 views
What is the best approach to search some text in body html
As of now I am using the the javascript search method to replace some text in body HTML like below..
Suppose my html is
<body>
<div> I am in body...</div>
</body>
...
6
votes
2answers
288 views
Matching one-line JavaScript comments (//) with re
I'd like to filter out (mostly one-line) comments from (mostly valid) JavaScript using python's re module. For example:
// this is a comment
var x = 2 // and this is a comment too
var url = ...
6
votes
3answers
2k views
How to replace a Perl hash key?
Let us say if I have a hash like this:
$data = {
'key1' => {
'key2' => 'value1'
},
'key3' => {
'key4' => {
...
5
votes
2answers
477 views
How to find and add bold a string in a paragraph?
Hello Guys!
I have being creating a Search Script for my site. But I wanna italic the matched words in the Description of every search result. The script I'm using is in PHP and the Description ...
5
votes
3answers
357 views
Search and Replace with incremented values in Vim
Lets say I wrote a simple CSS rule like this:
.star_10 {
background: url(stars.png) no-repeat 0 0;
}
And I need 10, so I copied it 9 times.
.star_10 {
background: url(stars.png) no-repeat 0 0;
...
5
votes
1answer
503 views
How can I search for the dot character using the search command?
I'm trying to use the Search command in Vim:
:Rs/F/T/X
R = range
F = text to find
T = text to replace with
X = options
But, when I want to search for the "." (dot character) I'm getting some ...
5
votes
7answers
300 views
Search and replace hundreds of strings in tens of thousands of files?
I am looking into changing the file name of hundreds of files in a (C/C++) project that I work on. The problem is our software has tens of thousands of files that including (i.e. #include) these ...
5
votes
2answers
5k views
Search and replace on Eclipse
What's the syntax to perform a search/replace on Eclipse and use "match groups" ( is that it's name? "
On vi I:
%s/log(.*)/log \1 debug/g
And lines like:
log "Message"
are replaced with
log ...
5
votes
5answers
20k views
Shell script - search and replace text in multiple files using a list of strings
[edited]
I have a file "changesDictionary.txt" containing (a variable number of) pairs of key-value strings.
e.g.
"textToSearchFor" = "theReplacementText"
(The format of the dictionary is ...
4
votes
1answer
101 views
How do you tell Emacs to leave the case alone in a search and replace string?
I'm trying to perform a regex search and replace in Emacs (using M-x query-replace-regexp), but the usually helpful smart case is getting in the way. My source is:
One
Two
Three
And I want to ...
4
votes
3answers
145 views
How to search/replace a bunch of text files in unix (osx)
I have a regular expression which I tested successfully on http://regexpal.com/ :
^(\".+?\"),\d.+?,"X",-99,-99,-99,-99,-99,-99,-99,(\d*),(\d*)
Where my test data looks like:
...
4
votes
3answers
155 views
How do I search, increment, and replace integer substrings in a Ruby string?
I have a lot of documents that look like this:
foo_1 foo_2
foo_3
bar_1 foo_4 ...
And I want to convert them by taking all instances of foo_[X] and replacing each of them with foo_[X+1]. In this ...
4
votes
1answer
170 views
Is there any way to tell IntelliJ IDEA not to look at files during a search/replace or during refactorings?
Basically my question is the topic ^
I have 4 files that are massive. I need to put them in resources under my maven project structure. Whenever I do a string-based refactoring or search/replace... I ...
4
votes
2answers
226 views
Emacs Case Sensitive Replace String
I just asked a related question (setq question) but it's distinctly different, so I decided to branch off with this question.
In my .emacs file, I define a key binding to the replace-string command:
...
4
votes
5answers
713 views
camelCase to underscore in vi(m)
If for some reason I want to selectively convert camelCase named things to being underscore separated in vim, how could I go about doing so?
Currently I've found that I can do a search /s[a-z][A-Z] ...
4
votes
5answers
428 views
How are you using the pattern matching functionality in ReSharper 5?
Resharper 5's new pattern matching seems very powerful, though it takes a bit of tinkering to work out how to use it.
For those who aren't familiar with this feature, it allows you to search for ...
4
votes
4answers
296 views
How to convert “string” to “*s*t*r*i*n*g*”
I need to convert a string like
"string"
to
"*s*t*r*i*n*g*"
What's the regex pattern? Language is Java.
4
votes
6answers
1k views
Powerful search-replace GUI app for Mac?
What's the best dedicated search-and-replace GUI tool on a Mac? "Find & Replace It!" seems decent, but they've ridiculously disabled the replace function in the demo, so I can't give it a real ...
4
votes
5answers
222 views
Why does Perl replace my string with “1”?
I have the following code:
#$domain = domainname.co.uk
#$root = public_html
#$webpage = domainname.co.uk/foo/bar/foobar.html
my $string = ($webpage =~ s/^$domain//g);
my $linkFromRoot = ...
4
votes
1answer
7k views
How to update an SQLite database with a search and replace query?
My SQL knowledge is very limited, specially about SQLite, although I believe this is will be some sort of generic query... Or maybe not because of the search and replace...
I have this music database ...
4
votes
2answers
566 views
Vim substitution of a list of words with another same length list of words?
I need to substitute a list of words with with an equally long list of words.
So for example you have:
"a","b","c","d","e","f"
And you want to replace each word with the uppercase version of each ...
4
votes
5answers
1k views
Visual Studio find doesn't find all possibilities
Recently, I've begun to notice that Visual Studio 2008 isn't finding all of the instances of a text I search for when I'm searching Entire Solution. It will start to search through the files to find ...
3
votes
2answers
30 views
Use Regex to identify patterns in UK Postcodes
For any UK postal code I want to replace all letters with capital A and all digits with 9.
For example
CH5 1EF would become AA9 9AA
EC1N 4DH would become AA9A 9AA
Is this possible in a single ...
3
votes
4answers
63 views
Vim Search/replace: what do I need to escape?
I'm trying to search and replace $data['user'] for $data['sessionUser'].
However, no matter what search string I use, I always get a "pattern not found" as the result of it.
So, what would be the ...
3
votes
2answers
66 views
Vim: replacing start and end of a visual char, line or block
I am trying to find a shortcut to place a custom comment sequence on my code, e.g.:
/*
start of comment
blah
end of comment
/**/
(it is easier to void the comment by just adding a / to the ...
3
votes
2answers
142 views
shell script: search and replace over multiple lines
I'm looking for a way to search and replace over multiple lines through a shell script. This is what I'm trying to do:
source:
[stuff before]
<!--WIERD_SPECIAL_COMMENT_BEGIN-->
[stuff here, ...
3
votes
1answer
189 views
How to Search and Replace in odt Open Office document?
In my Delphi application I am currently do Search&Replace programmatically for doc and docx word documents using office ole automation. Does anyone has the code to do the same (for doc, docs, odt) ...
3
votes
8answers
114 views
Need help creating a simple regex in Perl
I'm still useless when it comes to creating regex patterns. This one has got to be really easy.
Given the string: /home/users/cheeseconqueso/perl.pl
I want to place the string ./ right in front of ...
3
votes
2answers
136 views
Python: Faster regex replace
I have a large set of large files and a set of "phrases" that need to be replaced in each file. The "business logic" imposes several restrictions:
-matching must be case-insensitive
-the whitespace, ...
3
votes
5answers
199 views
Perform a non-regex search/replace in vim
When doing search/replace in vim, I almost never need to use regex, so it's a pain to constantly be escaping everything, Is there a way to make it default to not using regex or is there an alternative ...
3
votes
3answers
298 views
Replace variable string in VBA
I need to replace somethin in a string, but what to replace may vary. It can be
XY - test
XXxY-test
XXyyXx-TEST
yXyy -Test
and virtually any other combination of whitespaces and cases of the ...
3
votes
5answers
195 views
first replacement of a string in a file using sed
I would like to know how can I replace the first occurrence of searched pattern in the entire file.For example,
import java.io.File;
import java.io.File;
should be replaced by
import ...
3
votes
3answers
83 views
Is this possible to develop some criteria based search on the Strings in C# or JAVA?
I have one List in C#.This String array contains elements of Paragraph that are read from the Ms-Word File.for example,
list 0-> The picture above shows the main report which will be used for many of ...