Tagged Questions

For issues relating to search/find and replace operations.

learn more… | top users | synonyms

13
votes
5answers
5k views

How do I Search/Find and Replace in a standard string?

Is there a way to replace all occurrences of a substring with another string in std::string? For instance: void SomeFunction(std::string& str) { str = str.replace("hello", "world"); //< ...
10
votes
2answers
1k views

Find and replace whole words in vim

To find and replace all instances of a word in vim, I use %s/word/newword/g How do I change this so that it only finds instances of "word" that are whole words?
9
votes
4answers
4k views

Visual studio find and replace - Add carriage return, OR Newline

In the case of following string to be parsed. ford mustange,10,blue~~?bugatti veyron,13,black I want to replace the ~~? with a carriage return Replacing with \n just adds the string "\n" I'm sure ...
9
votes
1answer
1k views

Why Find and Replace window is so Wide in Visual Studio 2010?

Good afternoon is there anyone who noticed that Find and Replace window each time is getting wider when coding and compiling? Even when I resize this window in Visual Studio 2010, it gets wider ...
9
votes
15answers
558 views

Great tools to find and replace in files?

I'm switching from a Windows PHP-specific editor to VIM, on the philosophy of "use one editor for everything and learn it really well." However, one feature I liked in my PHP editor was its "find and ...
9
votes
4answers
5k views

Multiline Find & Replace in Visual Studio

Can it be done? We're using either VS2005 or VS2008. I don't mean regular expressions - which have their place - but plain old text find & replace. I know we can do it (at a pinch) with regular ...
8
votes
2answers
10k views

jQuery - Find and replace text, after body was loaded

I received some amazing help from others, concerning finding and replacing text with jquery. The code below will find the word: "Subject:" and replace it with "Name:" $("*").each(function () { ...
7
votes
3answers
134 views

Find and Replace for an Textarea

Would anyone have any idea how to make a Find and Replace thing where when you can just click next it will bring you to the next found item? Edit: For an Textarea. I want a Javascript code that can ...
7
votes
4answers
207 views

How can I speed this loop up? Is there a class for replacing multiple terms at at time?

The loop: var pattern = _dict[key]; string before; do { before = pattern; foreach (var pair in _dict) if (key != pair.Key) pattern = pattern.Replace(string.Concat("{", ...
6
votes
8answers
2k views

Recursively rename files using find and sed

I want to go through a bunch of directories and rename all files that end in _test.rb to end in _spec.rb instead. It's something I've never quite figured out how to do with bash so this time I thought ...
6
votes
3answers
2k views

Exclude file types from search in Visual Studio

Often when I want to search through my code in Visual Studio, I know the thing I'm looking for is in some C# code. However, as I've used the same variable name in a javascript file, I have to wade ...
6
votes
2answers
981 views

Suggestions for a command line search-and-replace tool on Windows

I am looking for a windows tool (exe) or python script which can be used on command line to search and replace strings in text files recursively in a source code tree. Any suggestions ? P.S. I am ...
5
votes
12answers
537 views

Finding and replacing many words

I frequently need to make many replacements within files need to make a lot of replacements within files. To solve this problem, I have created two files old.text and new.text. The first contains a ...
5
votes
4answers
534 views

Optimizing find and replace over large files in Python

I am a complete beginner to Python or any serious programming language for that matter. I finally got a prototype code to work but I think it will be too slow. My goal is to find and replace some ...
5
votes
2answers
783 views

Is there an equivalent of str_replace in C++?

In PHP, there is a str_replace function that basically does a find and replace. Is there an equivalent of this function in C++?
4
votes
1answer
143 views

How to save find/replace settings in Eclipse?

Eclipse has a pretty awesome find/replace system with regex support. I find that I use a lot of the same regex find/replaces on a regular basis. The Eclipse find/replace dialog does store the last ...
4
votes
2answers
227 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
1answer
783 views

Is there a way to find/replace across an entire project in Eclipse?

I'm trying to do a find and replace over many files within an Eclipse project, but I can't seem to find a way to do it. Googling showed me that there are plug-ins that can accomplish this, but is ...
4
votes
7answers
1k views

Find all instances of 'old' in a webpage and replace each with 'new', using a javascript bookmarklet

What I want to do is replace all instances of 'old' in a webpage with 'new' in a JS bookmarklet or a greasemonkey script. How can I do this? I suppose jQuery or other frameworks are okay, as there're ...
4
votes
5answers
2k views

Find and Replace within selection in `vi`

How do I do a Find and Replace within a selection in vi?
3
votes
2answers
52 views

Separating every line in a file at specific points

I have a dictionary file formatted like this: A B [C] D Where a is a word (with no spaces), B is another word (with no spaces inside it), C is the pronunciation (there are spaces here), and D is ...
3
votes
2answers
46 views

find and replace command for whole directoray issue

see i have one jig.c file in that i have statement like mkvFree(jig); Now i have used following command for find and replace find /home/jeegar/jig.c -type f -exec sed -i ...
3
votes
3answers
115 views

Python List & for-each access (Find/Replace in built-in list)

I originally thought Python was a pure pass-by-reference language. Coming from C/C++ I can't help but think about memory management, and it's hard to put it out of my head. So I'm trying to think of ...
3
votes
2answers
110 views

Find and replace problem

My website, has 2 database tables. 1 of them have the posts_table and the other one have the videos. At the moment i am getting the text images etc , normally from the post_table table. In my CMS ...
3
votes
3answers
157 views

Bash - find a keyword in a file and delete its line

I'd like to give a keyword, find the line where this keyword aṕpears in a file and erase the entire line. This is what I got but it is not working as it should: KEYWORD='domain.com' cat /etc/hosts | ...
3
votes
2answers
207 views

How to find and replace the character “*” in excel

I am trying to find and replace the * (star, or shift+8) character in a bunch of formulas in Excel 2007. * of course matches the ENTIRE contents of the cell, which is not what I want. How do I ...
3
votes
1answer
417 views

C# Find And Replace XML Nodes

Edit: I decided to take the LINQ to XML approach (see the answer below) that was recommended and everything works EXCEPT that I can't replace out the changed records with the records from the ...
3
votes
4answers
195 views

Simple javascript find and replace

is there a straightforward method for searching within a div for a specific string and replacing it with another? I cannot use .replaceWith alone because there are other elements within the div I need ...
3
votes
1answer
221 views

find and replace string

Is it possible to look at a pages source code and find a certain part and replace it with something else before the page loads? I would like to accomplish this using javascript so that I can use it in ...
3
votes
3answers
393 views

gVim find/replace with counter

Is there a way to insert the value from some sort of counter variable in gVim search/replace? e.g. convert this document: <SomeElement Id="F" ... /> <SomeElement Id="F" ... /> ...
3
votes
1answer
362 views

How to replace a part of XML node in SQL Server 2005

I would like to know how I can update a part of the text of an XML node in SQL Server 2005 using xquery In the following example I would like to replace the word "very" with "excellent" declare ...
3
votes
1answer
408 views

eclipse - regex: replace multiple group

someText 1 2 3 4 moreText I would like to add a prefix before each digit. but using (\w+\R)(\d+\R)+(\w+) and \1prefix\2\3 will only prefix the last digit and erase the others. Is there a way to do ...
3
votes
3answers
194 views

jQuery - Change part of contents in form

Just starting out with jQuery and this problem seems to be impossible to me. Search all the forums, no luck. Maybe you guys can help me? My html looks kinda like this: <form> <table ...
3
votes
2answers
625 views

Programatically find and replace text in pdf

I'm trying to create a web script that will allow me to alter PDF templates that I have uploaded and re-output them. I have tried Zend already which allows me to write to a PDF but that means leaving ...
3
votes
4answers
477 views

find and replace from command line unix

I have a multi line text file where each line has the format ..... Game #29832: ...... I want to append the character '1' to each number on each line (which is different on every line), does ...
3
votes
3answers
826 views

Looking for a RegEx Find and Replace Visual Studio addons

I am looking for a Visual Studio Addon which does standard Regular Expression Find and Replace, not the Microsoft Visual Studio version of Regular Expression As you do not get the complete syntax ...
3
votes
6answers
3k views

How to replace a variable within a string with PHP?

So I have some PHP code that looks like: $message = 'Here is the result: %s'; I just used %s as an example. It's basically a placeholder for whatever will go there. Then I pass the string to a ...
2
votes
3answers
59 views

Find and replace variables containing non-escaped characters with sed

I can use this, to find all instances of "fly" and replace it with "insect" in my file: sed -i 's/fly/insect/g' ./animals.txt How can I find a BASH variable and replace it with another BASH ...
2
votes
1answer
39 views

How do I disable find-name-dired's default -iname option?

I wanted to run a query-replace-regexp across multiple files in emacs, and found this post explaining how to do it. When I tried following the directions, I got an error after entering the file ...
2
votes
3answers
101 views

Replacing partial regex matches in place with Ruby

I want to transform the following text This is a ![foto](foto.jpeg), here is another ![foto](foto.png) into This is a ![foto](/folder1/foto.jpeg), here is another ![foto](/folder2/foto.png) In ...
2
votes
1answer
67 views

Regex: change date format

I have a list of dates formatted as mm/dd/yyyy. In order to fit them into the javascript UTC method, they have to be in format yyyy,m-1,dd. How can I use regex find replace (in Notepad++) to ...
2
votes
2answers
72 views

Using eclipse find and replace all to swap arguments

I have about 100 lines that look like the below: assertEquals(results.get(0).getID(),1); They all start with assertEquals and contain two arguments. Im looking for a way to use find and replace all ...
2
votes
5answers
123 views

How to Find a String in a Text File And Replace Each Time With User Input in a Python Script?

I am new to python so excuse my ignorance. Currently, I have a text file with some words marked as <>. My goal is to essentially build a script which runs through a text file with such marked ...
2
votes
2answers
337 views

C# - Comparing/Replacing Text Using Two .txt Files

I want to take in a certain format of one text file. After the first file is loaded and reformatted, I want to open a second text file and check if the second file has any text matches with the first ...
2
votes
1answer
222 views

Complete Regex syntax for Sql Server Management Studio

Is there a complete description of the regular expression syntax used in Sql Server Management Studio? There must be a way to do negative lookaheads, for example, but the find/replace dialog doesn't ...
2
votes
3answers
136 views

sed or awk - deleting strings between patterns

I have a CSV file with lines like this: AAA,A-name,num1,num2,num3 BBB,B-name,num1,num2,num3 CCC.DDD,C-name,num1,num2,num3 EEE.FFF.GGGG,E-name,num1,num2,num3 HHH.H-name,num1,num2,num3 ... Some ...
2
votes
2answers
227 views

Find and replace html code for multiple files within multiple directories

I have a very basic understanding of shell scripting, but what I need to do requires more complex commands. For one task, I need to find and replace html code within the index.html files on my ...
2
votes
3answers
154 views

How to search and replace a particular code line in C source using Perl/anything else?

I have a C source code spread over many source files (*.c). For porting reasons say I need to comment out below statements from all source files fprintf(stderr,"......",....); The problem is these ...
2
votes
3answers
1k views

Finding and replacing blank lines regex in Notepad++

I'm using Notepad++ and basically I want to find all blank lines that don't contain text using Notepad++ regex. I know that there is a simpler way of doing this by using 'textfx,' but I'm looking for ...
2
votes
3answers
242 views

find string with format '[number]' using regex

I have a string in a django/python app and need to search it for every instance of [x]. This includes the brackets and x, where x is any number between 1 and several million. I then need to replace x ...

1 2 3 4 5 6