0
votes
1answer
46 views
using Regex to find and replace doubles (C#)
I want to replace all double tokens in string with the double value appended with "c" letter. Is there an easy way to do it? I thought that the Regular Expression is the way to go
for example, I …
0
votes
1answer
43 views
problem with Checkboxes in Jtable column
Hi all,
I have a Jtable with 6 columns where i have Check boxes in the 6th Column.I am outing the text in to JTable by using the setValueAt() and getValueAt() methods.For the same Jtable I have …
0
votes
6answers
65 views
Find and replace in xml file using sed
Hello, I need to find and replace the value of the specific xml element. The conditions are as follows:
the value of element enabled must be changed from 0 to 1;
enabled must be the child of an …
6
votes
2answers
128 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?
2
votes
2answers
94 views
How do you replace a character in Go using the Regexp package ReplaceAll function?
Hi,
I am not familiar with C-like syntaxes and would like to write code to find & replace, say, all 'A's to 'B's in a source string, say 'ABBA' with the Regexp package ReplaceAll or …
2
votes
6answers
109 views
How can I delete all lines that do not begin with certain characters?
I need to figure out a regular expression to delete all lines that do not begin with either "+" or "-".
I want to print a paper copy of a large diff file, but it shows 5 or so lines before and after …
0
votes
1answer
26 views
How do I access matched objects for replacement when using regular expression mode in PL/SQL Developer Find & Replace?
I have a query where I want to replace
avg(j2)
with
avg(case when j2 <> 0 then j2 else 0 end)
The above is a specific example but the pattern is the same with all the replacements. It's …
1
vote
1answer
45 views
Which UNIX tool should I use to handle a substitution list?
Suppose I have one file A which is a list with a two-digit key numbers and three-digit subject numbers. Now suppose I have a second file B containing a list of pairs of subject numbers. I want to …
3
votes
3answers
215 views
How do I Search/Find and Replace in an STL 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"); //< …
1
vote
6answers
152 views
replacing all image src tags in HTML text
Hi!
I'm trying to make a simple php script to find all src attributes from all images in a html text and then replace all found srcs with some text after making some conditional changes.
Something …
0
votes
3answers
58 views
mass change link in html website
I took over an old HTML based site with all hard coded links, no frames etc. Theres who knows how many pages that have a link to abc.html (<--example).
I've been asked to go through the pages …
2
votes
2answers
201 views
How do I add thousand separators with reg ex?
I'm using this free RegExp Designer which does find and replace. How do I search for all numbers and add thousand separators?
Input: <node num='12345678'>
Output: <node …
2
votes
6answers
253 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 …
1
vote
4answers
397 views
Single quote issues with C++ find and replace function
Here is my code for finding a sequence in a string and replacing it with another:
std::string find_and_replace( string &source, string find, string replace )
{
size_t j;
for ( ; (j = …
0
votes
1answer
71 views
What does “Wrap to beginning when end is reached” means?
I've found that tooltip text in jsyntaxpane's find/replace operation. However, I don't understand what that means, or how it should perform. I think it should do a replace, and if it reaches the end …
