Replacing is the action of searching a string for a sub-string and replacing it with a different string.
0
votes
1answer
32 views
UnknownFormatConversionException is caused by symbol '%' in String.format()
String template = "%s and '%'";
String result = String.format(template, "my string");
System.out.println(result);
Expected:
my string and '%'
But result is:
...
2
votes
3answers
63 views
Oracle Replace function
I need to replace the Table1's filed values from Table2's values while select query.
Eg:
Table1:
Org Permission
--------------------------------------
Company1 1,3,7
...
1
vote
3answers
32 views
Replacing non-diagonal elements in a matrix in R (hopefully a better asked this time)
Okay, I asked this question earlier but I got bashed (deservedly) for not specifying anything and showing no sign of previous attempt. So let me try again..
I'm using R, and I have a 463✕463 matrix. ...
0
votes
6answers
59 views
How to replace non-diagonal elements in a matrix?
More specifically, I want all elements other than the diagonal ones (X_11, X_22, X_33,...,X_jj) to be zero.
E.g. I want:
[1 4 5
2 3 5
3 9 8]
to be:
[1 0 0
0 3 0
0 0 8]
Is this ...
0
votes
0answers
22 views
multiline search replace with regexp in eclipse
Unfortunately, Eclipse (or other IDEs - Idea, Netbeans) does not provide good support for multiline search-replace, or I cannot find it. Regexp search works pretty well, so for example in search box I ...
1
vote
1answer
21 views
How to replace textbox text within “” or {}
I am having trouble trying to replace text in a textbox with just a click of a button.
I would like to change lets say "354" with a number of my choice. I cannot use the normal
TextBox.Text = ...
1
vote
3answers
50 views
Bash replace string with contents from second file
I have two files one that looks like this:
FILE1
>comp0_c0_seq1 len=392 path=[1:0-391]
ATGAG...
>comp1_c0_seq1 len=399 path=[1:0-398]
AAGGA...
>comp1_c1_seq1 len=589 path=[1319:0-588]
...
1
vote
2answers
29 views
MySQL Search and Replace to replace unused shortcodes
I am updating a Wordpress site. It used a shortcode to produce youtube embed videos, but that's not really needed anymore. I'm a front end dev and I want to be careful before touching the Database. ...
0
votes
2answers
45 views
Replacing many words in brackets with a new one
I have the following string :
Cat dog (fox) catepillar bear foxy
I need to replace "cat" and "fox" words from this sentence to word "animal"
use warnings;
use strict;
# declare your vars with 'my' ...
0
votes
1answer
23 views
Find and Replace Regex in Dreamweaver
I want to find [value-XXX] and replace it with ?. The XXX is a number ranging from 1 to 661. This means there are 661 [value-XXX]'s in my document. I see there is a regular expression option in ...
0
votes
3answers
48 views
replace many words with a new one
I have the following string :
Cat dog fox catepillar bear foxy
I need to replace "cat" and "fox" words from this sentence to word "animal"
I do the following:
$Str1="cat";
$Str2="fox";
...
0
votes
0answers
25 views
How to amend sub strings?
Using collation xxx_german2_ci which treats ü and ue as identical, is it possible to have all occurences of München be highlighted as follows?
Example input: "München can also be written as ...
0
votes
1answer
69 views
Javascript replace not working as expected
This is my code
var tmp = document.body.outerHTML.match(/<b>Location: <\/b>([^,]+),([^,]+),([^,])([^\s]+) <br>/i);
DataExtractor.AddHeader(14, 'id_country');
var country
if( ...
0
votes
4answers
63 views
Replacing escape characteres from json in c#
I want to replace the "\" character from a JSON string by a empty space.
How can I do that?
0
votes
1answer
14 views
Replaceregexp with property value depending on the matched group
I'd like to replace some replace marks in css files with values out of a property file. What i did so far is:
<target depends="prepare" name="build_css">
<replaceregexp>
...
-5
votes
1answer
66 views
How can I replace all chars in string except another string [duplicate]
Given a string and a non-empty word string, return a version of the original String where all chars have been replaced by pluses ("+"), except for appearances of the word string which are preserved ...
-3
votes
2answers
101 views
How to print the array values in php? [closed]
How i can replace the array values in php
Array ([0] => Array ([ss] => k))
into
array("0" => array ("ss" => "k"));
0
votes
0answers
24 views
jQuery plugin replaceElements replaces all Elements over the whole document
I like to replace an ul-li-list (ul#menu) in div-p-"list" (div#menu). That means that ul becomes div and li becomes p-tag.
Problem: The Plugin I have found replaces all ul-li-lists all over the ...
-1
votes
6answers
72 views
replace every second comma of string using php
I have a string of that displays like this:
1235, 3, 1343, 5, 1234, 1
I need to replace every second comma with a semicolon
i.e.
1235, 3; 1343, 5; 1234, 1
The string length will always be ...
-1
votes
0answers
21 views
convert my php normalizePath() function to bash [closed]
public static function normalizePath($path,$DS=DIRECTORY_SEPARATOR) {
// fix slashes with correct directory separator
$path = preg_replace(array(
'#/+#', // replace all "/" with ...
-2
votes
2answers
35 views
remove substring starting from one character upto another character
How do I remove a part of string starting from '+' and ending at '@' using PHP.
Actually I need some code to replace all of these
bob+fake1@gmail.com
bob+anything@gmail.com
bob+something@gmail.com
...
0
votes
0answers
39 views
Parse NSString and replace certain substrings [duplicate]
Say I have a string that contains: "My computer is on fire! What should I do?" and I wanted to parse this string for all the substrings that had a length greater than 2. If the substring's length was ...
0
votes
1answer
27 views
Search and Replace PDF using Itext
I need to generate a PDF based on some user inputs. The output PDF have some images, tables and texts. I think that Itext is not user friendly for programmatically generate this report.
Since the ...
-1
votes
0answers
49 views
sed/awk/perl? Replace pattern with result of using pattern as input to another command
I'm writing a wrapper function for ssh that replaces keys (specified elsewhere) with the proper username@hostname for that server. Keys are designated by the presence of at least one comma. For ...
-1
votes
1answer
7 views
Find a file type and verify a line exists replace if value is different than expected
I'm trying to write a batch file that will search a directory for a file type. After I find the file name I need to read the file to verify that a line exists and overwrite the line if different than ...
1
vote
3answers
35 views
How to script a REPLACE statement in SQL 2012?
First of all let me say that I'm an absolute rookie in SQL and scripting, so please talk to me as to a little child. ;)
I have a huge number of databases that contain tables in which I have to ...
0
votes
1answer
41 views
Replace first and last occurrences of a json string
I am fetching the response from webservice and trying to parse the json string.
The response string is,
...
0
votes
4answers
43 views
Replace Last Occurance of a character in a string
I am having a string like this
"Position, fix, dial"
I want to replace the last double quote(") with escape double quote(\")
The result of the string is to be
"Position, fix, dial\"
How can I ...
0
votes
1answer
50 views
jQuery to replace images with content
GOAL:
To fadeIn() the 'company-content' when the logo image is CLICKED ON AND fading out all of the other content in the 'tiles-wrapper' DIV. The COMPANY CONTENT will be the same width as the full ...
0
votes
3answers
57 views
Replacing characters within a list
I have to replace certain characters in each tuple in a list.I know how to do it with just a basic string.
import string
s = 'This:is:awesome'
ss = s.replace(':', '/')
print ss
However, how would I ...
2
votes
1answer
45 views
Replacing a jstree node on ajax call
I have a jstree object that I use for storing data, and I use ajax to complete it step after step. I call an ajax.php file that will return nodes formatted in HTML, depending on the data I send to it.
...
1
vote
1answer
28 views
Replace occurances of a contents in variable with a string using replace method
I am facing trouble in getting the all occurances of pattern of a string replaced with another string.My string looks like this
"<TD> 1.Rule<SPAN> ...
0
votes
4answers
70 views
RegEx Javascript replace?
I'm trying to make a filter which has a lot of options that get listed in the top of the filter box, now, I'm trying to add the countries and I decided to use regex. But I can't get it to work, for ...
0
votes
1answer
49 views
How to remove flooding from text via js?
I don't know the name of what I want, so I'll show you.
I have an input text where users can ask questions, but there are some users asking questions like these:
What the?????????????????????%%%%%% ...
1
vote
1answer
33 views
Replace a whole line in a INI-file using Powershell
i have a problem with replacing a whole line in a ini-file, it just seems to add my result to thesame line.
Here is the ini-file:
[environment]
APP_USER=Domain\User1
I just wish to replace ...
2
votes
5answers
79 views
Replacing a substring consisting of a digit
I'm a newbie programmer so sorry in advance if I'm asking a too-obvious question.
I program in c#(WPF).
I have a few strings that are built in this structure:
string str ="David went to Location 1 ...
0
votes
1answer
19 views
Numbers & escape characters for regex replacement in Notepad++
I'm trying to match a pattern using RegEx in notepad++, but not having much luck. I'm able to match part but not all of it.
I need to search for this line:
<size value="Large" ...
0
votes
5answers
85 views
String Replace not work
I have a string (an example of its value is {"id":"123241077871_4423423423414"}) and I only require the part with the numbers and the underscore. However, my way of doing it with the String.Replace ...
1
vote
2answers
65 views
PHP equivalent of Python's `str.format` method?
Is there an equivalent of Python str.format in PHP?
In Python:
"my {} {} cat".format("red", "fat")
All I see I can do in PHP natively is by naming the entries and using str_replace:
...
0
votes
0answers
8 views
Find and Replace Tool In Dreamweaver
Dreamweaver: How can I use Find and Replace to replace < option value="16011"> < option value="17927"> < option value="56783"> with < tr>< td> on each line leaving the stuff after the ...
-2
votes
2answers
33 views
How to insert a character inside a string
$string=apple
$add=£
$new=app£le
I am facing problem with inserting character in a string.
1
vote
2answers
52 views
Remove a character in a string, provided it is enclosed by brackets
In advance, I haven't learned regex yet (though I'm happy to use one if someone could supply it).
I have strings like this:
"zum Abschluss kommen (nachdrücklich; abgeschlossen werden)".
What I ...
1
vote
1answer
65 views
SQL - From [spoiler:abcdefgh] to [spoiler]
I've this string in many records [spoiler:abcdefgh]. abcdefgh are variable characters. I want this to became [spoiler]. So I want to remove :abcdefgh.
I know that the query is:
UPDATE post
SET ...
0
votes
3answers
45 views
PHP regex - find and replace link
I am trying to do this regex match and replace but not able to do it.
Example
<a href=one target=home>One</a>
<a href=two>Two</a>
<a href=three ...
4
votes
1answer
48 views
Emacs regexp replace situation
on emacs
Let say that I have this text:
abcd abcd. 23 where . 2 is important for catching
With \. [[:digit:]] I can catch pattern but how to replace without .
Output should be abcd abcd 23.
0
votes
2answers
46 views
How do you replace a line of text in a text file (python) [duplicate]
i have a text file that looks like this:
unknown
unknown
etc.
How do you choose a specific line in the text file, delete that line than replace it with a specific string.
0
votes
1answer
42 views
StringIndexOutOfBoundsException in a FOR Loop [closed]
import java.util.Scanner;
public class Test {
public static void main (String [] args){
String word = "ErFLwWSa$ F?ytWtmVRLWmDj #4STs!@ VRa!12OW";
String word2 = "GREEN";
String result ...
0
votes
1answer
28 views
Search and Replace a complex string in MySQL
I am working on a Client side where they have text like below saved into a MySQL Database, I need to delete it from all entries.
Using PHP or just SQL, can someone help me figure out how this can be ...
1
vote
3answers
62 views
Finding out Age in Months and Years given DOB in a CSV using python
I making several adjustments to an automatically gennerated CSV report. I am currently stuck on a part where I need to take a patient's DOB and convert that into an Age in Months and Years. There is ...
0
votes
5answers
60 views
change the style of text in a string
I've following html tag.
<td>Akshay Hulyalkar</td>
I want to change the style of 'Aks' in the above html tag like as follows.
<td><span ...





