Replacing is the action of searching a string for a sub-string and replacing it with a different string.
1
vote
1answer
42 views
How to replace only particular dots in the string?
How to replace only particular dots in the text string?:
string_expample = '123|4.3|123.54|sdflk|hfghjkkf.ffg..t.s..9.7..tg..3..654..2.fd'
I need to get only dots that are 1 and between 2 digits( ...
-1
votes
1answer
29 views
Replace more than one thing in a string
I'm trying to make some kind of secret code language for kids with an online translator.
However, I stumbled upon a problem. I replace the letters of the word from A to Z. But if I have a word like ...
0
votes
0answers
21 views
Manipulate onmouseover properties, not my own site
Basically there's a site that i use frequently that has a list of links, when you hover over one of them a small pop-up image is displayed. I would like to make these images bigger, thats it.
The ...
0
votes
1answer
21 views
remove last directory in URL
I am trying to remove the last directory part of an URL. My URL looks like this:
https://my_ip_address:port/site.php?path=/path/to/my/folder.
When clicking on a button, I want to change this to
...
0
votes
1answer
16 views
jQuery replace image source in a list with next one, and start over at the end
I have set of images, and need to replace their source with next one. I managed to do that, but how to make it to loop infinite, so last image should get source of first image, etc.
I - 1,2,3,4,5
II ...
0
votes
3answers
62 views
Replace words in Strings
I have a on/off button that I want to change the value of a String, if the String contains randomnessOn it will change to randomnessOff and vice versa. I can't just override the String because it ...
0
votes
2answers
36 views
truncating files with windows.h, C
I was tasked with creating a random access/ binary list and allowing the program to erase a target record (struct) from it using the windows.h library and it's HANDLE functions.
I'v written the ...
0
votes
1answer
15 views
PHP preg_match URL replacement usage
I have two URL patten structure in $url
news.oxo.com/site/data/html_dir/2013/05/25/2013052500007.html
salute.com/arti/society/health/588947.html
and want to change those to
...
0
votes
4answers
53 views
Replacing '>' with jQuery while preserving all HTML
I am trying to replace a ">" in a string in jQuery but the problem I'm having is that I need to preserve the HTML. Here's an example of what I'm talking about:
<div class="link">
<a ...
0
votes
1answer
28 views
Flex - RegExp replace is not working using variable
Must be simple fix but I cannot see for the life of me what I'm doing wrong.
I've tested the reg expression in an online tester and it works,
so assuming it's Flex dependent problem.
Here's my code ...
1
vote
1answer
37 views
Regex to replace |foo| with abs(foo)
I've got a large LaTeX document, and I'm looking to change the formatting of places where I've used absolute-value notation. Ideally I'd do this automatically, but I'm unsure of how to construct the ...
0
votes
2answers
25 views
Xcode - Replace content in '< >' of String
I search this question but not found nothing to helped me.
For example, I have this string:
NSString *text = @"Siguiendo la estela del <a class="colorbox" ...
0
votes
1answer
40 views
R convert word into a sum of values
I have a column with 13 characters (2000 rows) . And i would like to convert them to value. This value should be the sum of all values that are assigned to a specific character.
example
...
0
votes
0answers
20 views
Magento transactional email order returns & for &
I'm trying to fix a Magento issue, but I have no experience with Magento at all.
A customer can place an order for postcards, and can specify the text he/she wants printed on the cards. After the ...
1
vote
2answers
23 views
Replace a number in CSV file with VBscript without replacing all text
I'm working on this code
Dim strFirm,soNumber,strValues,arrStr,strCitrix,NewText,text
strFirm = "Gray"
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objTextFile = ...
0
votes
1answer
23 views
replacing a variable for an other variable after “submit” is clicked
here is my index.php:
<script>
function changecolor(img)
{
var images = document.getElementsByTagName("img");
for(var i=0,j=images.length; i<j; i++)
{
...
2
votes
1answer
39 views
Selecting Multiple Substrings from a Field
I'm trying to create a SQL query that selects pieces of a record from a field. Here is a shorten example of what is in one unedited field:
<Name>Example1</Name>
...
0
votes
5answers
30 views
JS: Replace innerHTML of tags
My application dynamically gets HTML code from my website and saves it as a String.
Here's an example:
Lorem ipsum <a href="http://www.google.com">Click Here</a>
Lorem ipsum <a ...
0
votes
5answers
77 views
Replacing some substring occurence inside a string
GIve me some advices concerning replacing substrings in a string.
At the input I have the initial string (it is a C# code always) and the NewName (MyGood) of the class.
the initial string:
using ...
0
votes
0answers
34 views
R merge() follow up conditional replacement of non-unique entries
I would greatly appreciate a solution to defined problem below; I think it's a very difficult one.
I join 2 data.frames t1 and t2 using merge(). In the resulting data.frame, which I named "testing", ...
0
votes
0answers
5 views
replacing data frame values with NA in r
I have a large data frame that consists of 38 variables and over 10000 observations for each variable. How can I select a certain variable and replace specific values with NA. For example, if I have ...
-2
votes
1answer
26 views
Javascript replace special characters [closed]
What do I need to write when my string:?
:)
:D
:(
:'(
:S
Example:
msg = msg.replace(/:'(/gi, "<img src='smileys/cry.gif' />");
Thank you.
0
votes
1answer
36 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:
...
1
vote
3answers
79 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
34 views
Replacing non-diagonal elements in a matrix in R (hopefully a better asked this time) [duplicate]
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
65 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
27 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
24 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
53 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
36 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
48 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
24 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 ...
1
vote
3answers
52 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
2answers
38 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
65 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
67 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
34 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
74 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
23 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
37 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
29 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
51 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
36 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
45 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 ...







