Tagged Questions
Replacing is the action of searching a string (the haystack) for a sub-string (the needle) and replacing it with a different string. So for example, replacing all 'l' within 'Hello' with 'y', would result in 'Heyyo'.
131
votes
7answers
62k views
How to replace a character for a newline in Vim?
I'm trying
:%s/,/\n/g
but it inserts what looks like a ^@ instead of an actual newline. The file is not in DOS mode or anything.
What should I do?
EDIT: If you are curious, like me, check the ...
41
votes
8answers
15k views
Is there an alternative to string.Replace that is case-insensitive?
I need to search a string and replace all occurances of %FirstName% and %PolicyAmount% with a value pulled from a database. The problem is the capitalization of FirstName varies. That prevents me from ...
31
votes
5answers
808 views
Using jQuery to replace one tag with another
got a quandary i was hoping you kind folks could help me out with...
goal:
Using jQuery, I'm trying to replace all the occurrences of:
<code> ... </code>
with:
<pre> ...
25
votes
2answers
2k views
VIM: substitute with contents of register / lines range
I'm using VIM, and I want to substitute some placeholder text with a long string, that spans several lines, which is already written somewhere else in the file.
Is it possible to replace a pattern ...
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
911 views
Search and Replace Words in HTML
what I'm trying to do is make a 'jargon buster'.
Basically I have some html and some glossary terms in a database.
When the person clicks on jargon buster it replaces the words in the text with a nice ...
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 ...
21
votes
14answers
9k views
How do I replace the *first instance* of a string in .NET?
I want to replace the first occurrence in a given string.
How can I accomplish this in .NET?
20
votes
7answers
4k views
VIM Replace word with contents of paste buffer?
I need to do a bunch of word replacements in a file and want to do it with a vi command, not an EX command such as :%s///g. I know that this is the typical way one replaces the word at the current ...
16
votes
8answers
10k views
16
votes
6answers
2k views
Alternative to String.Replace
So I was writing some code today that basically looks like this:
string returnString = s.Replace("!", " ")
.Replace("@", " ")
.Replace("#", " ")
.Replace("$", " ")
...
15
votes
1answer
2k views
Replacing the 'auto_link' method in Ruby on Rails 3.1
I am using Ruby on Rails 3.0.7 and I know that in the 3.1 version there will be anymore the auto_link method (see the actionpack/lib/action_view/helpers/text_helper.rb for RoR 3.1).
There is another ...
15
votes
12answers
3k views
Mass string replace in python?
Say I have a string that looks like this:
str = "The &yquick &cbrown &bfox &Yjumps over the &ulazy dog"
You'll notice a lot of locations in the string where there is an ...
14
votes
2answers
9k views
How to replace all points in a string in JavaScript
I want to replace all the occurances of a period '.' in a JavaScript string
For example, I have
var mystring = 'okay.this.is.a.string';
I want to get -> okay this is a string
so far I tried
...
13
votes
13answers
27k views
How can I replace newline characters using JSP and JSTL?
I have a list of bean objects passed into my JSP page, and one of them is a comment field. This field may contain newlines, and I want to replace them with semicolons using JSTL, so that the field can ...
12
votes
11answers
1k views
string replace using a List<string>
I have a List of words I want to ignore like this one :
public List<String> ignoreList = new List<String>()
{
"North",
"South",
"East",
...
11
votes
5answers
2k views
htmlentities in PHP but preserving html tags
I want to convert all texts in a string into html entities but preserving the HTML tags, for example this:
<p><font style="color:#FF0000">Camión español</font></p>
should be ...
11
votes
6answers
4k views
Vim replace selected text
Let's say we have a text, and I enter visual mode and select some text. How do I quickly do a search for the highlighted text and replace it with something else?
11
votes
9answers
7k views
Replace an item in a list in Common Lisp?
I have a list of things (I'll call it L), an index(N) and a new thing(T). If I want to replace the thing in L at N with T, what is the best way to do this? Should I get the sublist up to N and from N ...
10
votes
3answers
313 views
In Perl, how do I remove consecutive pairs of characters from a string?
I have a string containing pairs of characters and I would like to replace each run by a single character. How can I do that?
This is a question from the official FAQ. We're importing the perlfaq ...
10
votes
4answers
10k views
Java how to replace 2 or more spaces with single space in string and delete leading spaces only
Looking for quick, simple way in Java to change this string
" hello there "
to something that looks like this
"hello there"
where I replace all those multiple spaces with a single space, ...
10
votes
1answer
160 views
Javascript replace() doesn't work in VS - unknown character
I'm trying to use the javascript replace function to replace curly quote with straight quotes:
var EditedContent = content.replace(/“/g, '"');
This works great in a little proof of concept html ...
9
votes
5answers
520 views
c# Fastest way to remove extra white spaces
What is the fastest way to replace extra white spaces to one white space?
e.g.
from
foo bar
to
foo bar
9
votes
3answers
358 views
Count regex replaces (C#)
Is there a way to count the number of replacements a Regex.Replace call makes?
E.g. for Regex.Replace("aaa", "a", "b"); I want to get the number 3 out (result is "bbb"); for Regex.Replace("aaa", ...
9
votes
3answers
2k views
/ in vi Search and replace?
in vi, search and replace, how do you escape a '/' (forward slash) so that it is correct. Say in a path.
like: /Users/tom/documents/pdfs/
:%s//Users/tom/documents/pdfs//<new text>/g --FAILS ...
9
votes
6answers
1k views
Is there a simple way to do bulk file text substitution in place?
First of all, I'm a Perl newbie, so please be gentle =)
I've been trying to code a Perl script to substitute some text on all source files of my project. I'm in need of something like:
perl -p ...
8
votes
2answers
238 views
Can I use $1 in regex_replace?
From reading the FCD for regex_replace (28.11.4) I can only guess that the function can also use parts of the original string for replacing? I can not test it with my gcc, is this correct?
using ...
8
votes
3answers
111 views
How to Replace Text while Maintaining Capitalization?
Say I wanted to a string replace on a file with the following contents
name
nAmE
naMEbb
NAME
And wanted to replace the word "name" with "dave", but keeping the capitalization of the original text. ...
8
votes
5answers
7k views
Python: Replace values in list
Hello Stack Overflow Community,
I have a list where I want to replace values with None where condition() returns True.
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
For example, if condition checks ...
8
votes
5answers
6k views
Replacing an element and returning the new one in jQuery
How do you replace an element in jQuery and have the replacement element returned instead of the element that was removed?
I have the following scenario. I have many checkboxes and once you click one ...
8
votes
2answers
2k views
Best way to do a find/replace in several files?
what's the best way to do this? i'm no command line warrior, but i was thinking there's possibly a way using grep and cat.
i just want to replace a string that occurs in a folder and sub-folders. ...
8
votes
5answers
7k views
Case insensitive string replacement in JavaScript?
I need to highlight, case insensitively, given keywords in a JavaScript string.
For example:
highlight("foobar Foo bar FOO", "foo") should return "<b>foo</b>bar <b>Foo</b> ...
7
votes
4answers
146 views
String replacing in a div
I want to replace a particular string in #TextArea1. This happens when a button is clicked.
Trying it out with the below code, but unable to get it work:
$('#TextArea1').text().replace("wef","--");
...
7
votes
4answers
143 views
Perl regex replace in same case
If you have a simple regex replace in perl as follows:
($line =~ s/JAM/AAA/g){
how would I modify it so that it looks at the match and makes the replacement the same case as the match for example:
...
7
votes
4answers
254 views
vim search and replace limited to the highlight in visual block mode
I often have text in columns and need to replace some things without clobbering similar stuff on the same line... a simple example follows:
Suppose I have highlighted the text in grey with vim ...
7
votes
4answers
604 views
Replace element in List with scala
How do you replace an element by index with an immutable List.
E.g.
val list = 1 :: 2 ::3 :: 4 :: List()
list.replace(2, 5)
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
7answers
1k views
How to replace line-endings in VIM
How can I replace all line-endings in big file (>100MB)?
I have tried to do
:%s/\n/, /g
but it's too slow.
7
votes
6answers
1k views
Replace first word with last word in C#
Hi
I want to replace the following line in C#. Replace first word with last word. I have to remove '[' and ']' from last word as well.
string oldString = "200 abc def abc [a18943]"
Output should ...
7
votes
3answers
567 views
Is it possible to dock the “Find/Replace” window in Eclipse?
I could have sworn I saw it once before in a screencast where someone had the find/replace window docked in their Eclipse environment.
However looking through the list of options in "Window > Show" ...
7
votes
5answers
13k views
XSLT Replace function not found
I am writing an XSLT transformation in which I wish to use the Replace function to do a regex match and replace.
However, Visual Studio 2008 reports that
'replace()' is an unknown XSLT ...
7
votes
3answers
450 views
Replace 2 strings at the same time?
how can I replace 2 strings in the same time? for example let's say I have string like this:
str1 = "AAAA BBBB CCCC DDDD"
i want to replace every "AAAA" with "CCCC" and every "CCCC" with "AAAA" but ...
7
votes
5answers
5k views
How to change diacritic characters to non-diacritic ones
I've found a answer how to remove diacritic characters on stackoverflow, but could you please tell me if it is possible to change diacritic characters to non-diacritic ones?
Oh.. and I think about ...
7
votes
5answers
7k views
Best way to replace a whole directory tree in Subversion?
Within my Subversion project I have a few directories that contain other open source projects that my code needs. For example ffmpeg, freetype, matrixssl and a few others.
What is the best way to ...
7
votes
14answers
2k views
What's the best tool to find and replace regular expressions over multiple files?
Preferably free tools if possible.
Also, the option of searching for multiple regular expressions and each replacing with different strings would be a bonus.
7
votes
5answers
4k views
What would be the fastest way to remove Newlines from a String in C#?
I have a string that has some Environment.Newline in it. I'd like to strip those from the string and instead, replace the Newline with something like a comma.
What would be, in your opinion, the ...
6
votes
3answers
119 views
In Mathematica, why is it that a replacement in a recursive function doesn't terminate?
Imagine I've defined a recursive factorial in Mathematica, like this:
Clear[fact]
fact[0] = 1
fact[n_] := n fact[n - 1]
Evaluating fact[10] confirms that the function works and terminates.
A bit ...
6
votes
2answers
215 views
How can I replace the first line of a large file in Java?
I would like to blank out the first line of a text file in Java. This file is several gigabytes and I do not want to do a copy. Using the suggestion from this post, I am attempting to do so using ...
6
votes
4answers
80 views
Javascript replace string with 8 and 9 doesn't work…but other numbers do…?
Check out this script... run and see the oddity..
http://jsfiddle.net/BjJTc/
From jsfiddle
var m = 'Jan07';
var mm = 'Jan';
alert(m.replace(mm, ''));
alert(parseInt(m.replace(mm, '')));
var m = ...
6
votes
5answers
244 views
C# - Replace a character with nothing
I have a RichTextBox that looks like this:
TEXT NEXT_TEXT 10.505 -174.994 0
TEXT NEXT_TEXT 100.005 174.994 90
TEXT NEXT_TEXT -10.000 -5.555 180
TEXT NEXT_TEXT -500.987 5.123 270
...