Replacing is the action of searching a string for a sub-string and replacing it with a different string.

learn more… | top users | synonyms (4)

1
vote
1answer
38 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
26 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 ...
2
votes
1answer
28 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
42 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
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
57 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
58 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 ...
-1
votes
4answers
34 views

PHP transform a text to meta keywords

I want to transform a given text like "Lorem ipsum dolor sit amet, consectetur adipiscing elit! Nam suscipit | Auctor pellentesque." to meta keywords in a page. For that I need to arrange the ...
0
votes
2answers
23 views

Replacing characters at specific positions in strings in Oracle

I'm trying to write a function that can decode a message by switching pairs of characters around. Say I have the message hello! which, when encoded, turns into ehll!o. Is there an existing function ...
0
votes
1answer
40 views

Regex matches only first Pattern and not subsequent Patterns

In the sample below: MARY 2.629 3,991,060 1 PATRICIA 1.073 1,628,911 2 LINDA 1.035 1,571,224 3 BARBARA 0.98 1,487,729 4 ELIZABETH 0.937 1,422,451 5 In this sample I ...
0
votes
3answers
44 views

replacing word with another word from the string in python

I have a string: "y, i agree with u." And I have array dictionary [(word_will_replace, [word_will_be_replaced])]: [('yes', ['y', 'ya', 'ye']), ('you', ['u', 'yu'])] i want to replace 'y' with ...
0
votes
1answer
41 views

I want to replace characters(*, ', ?, :, /,\,all) in a random String( of any size length & any type of characters)

I have generated a random string of varaible size length which include lower, upper, numbers & punctuation. I am writing an API which takes input for any of these characters (*, ', ?, :, /,\) ...
2
votes
1answer
84 views

RegEx in java to replace a String

I've been trying to replace this mathematical function x^2*sqrt(x^3) to this pow(x,2)*Math.sqrt(pow(x,3)) so this is the regex /([0-9a-zA-Z\.\(\)]*)^([0-9a-zA-Z\.\(\)]*)/ pow(\1,\2) it works ...
0
votes
0answers
45 views

How can I replace two or more words with JQuery?

Hello I have a multiple possible words like "Dog cat" "Bird Cat" How can I select them with JQuery and replace them? I've tried the script below which I made; it works, but is select separately ...
0
votes
2answers
27 views

How do i go about replacing a value at a index in a array in php

What I am trying to do is replace a value of a JSON array at the index where the username matches. How do I go about doing this? Below is my trial PHP code and my JSON. Is using array_replace the best ...
0
votes
1answer
19 views

How do I replace global RegExp matches in JavaScript

In an attempt at simple substitution, I tried something like this: var dict = { ... }; var selector = ("'$greetings' '$friend'").replace(/\$([^']+)/g, dict[RegExp.$1]) But only one of the ...
2
votes
2answers
28 views

Vba how to compare 2 column

I'm making an heuristic analyse and i have the fallowing problem : I want to find in column D numbers that match with column J and replace them by a "0". You can see what I'm trying to do on this ...
0
votes
3answers
33 views

VB.NET regular expression replace string

I have got a string that I need to replace by using wildcards in a VB.Net code. I found out that I may need to use the Regular expressions but I am new to it. I would like to change the following ...
0
votes
0answers
14 views

wso2: Service Replacement

How many strategies and mechanism exist for service replacement? if a service failed in any reason what strategies and mechanism adopted for replacing it? where applied to? which product? which ...
0
votes
0answers
20 views

Jacob + MS Word need some advice

It just reads the first result of search and replace it but can not search & replace all. Source: ActiveXComponent oWord = new ActiveXComponent("Word.Application"); ...
0
votes
1answer
53 views

Replace all spaces in a string with '%20'. Assume that the string has sufficient space at the end of the string to hold the additional characters [closed]

The question is as the titles, and I have write a code to implement this function. The code is as below, but the sentence: *(str+length_copy-1+tail_space_num) = *(str+length_copy-1); cause an error. ...
0
votes
1answer
32 views

titlecase script to find and replace strings within elements in multiple files

I would like to use John Gruber's titlecase script (converts strings to titlecase with small-word exceptions). My specific task is to search through multiple files and replace text strings within ...
0
votes
2answers
28 views

Find and replace a string into a path in batch

I am trying a batch file which replaces a changing text named X by a static text 'English' into the path Y:\SUT\ISTQB\Board\X\Dashboard\Open About the position of the X text, it is always ...
0
votes
1answer
33 views

Replace particular characters in the string at the same moment

var str = 'Hello World' var replacements = {0: '4', 6: '77'}; magicalReplace(str, replacements); // result: 4ello 77orld Can you help me write that function which would help solve the problem? The ...
2
votes
3answers
41 views

Removing a Ton of Leading Spaces and Newline Characters from a String

I have a Python string that is printing out the following string in the shell: '\\n autonomy\\n . . sweeping\\n \\n ' How can I remove all of ...
1
vote
1answer
19 views

Multiline regex replacement in sed/vi

I need to replace this statement in a named.conf with regex masters { 10.11.2.1; 10.11.2.2; }; All my approaches with sed/vi do not work %s/masters.*\}\;//g does not match. Also ...
0
votes
3answers
35 views

HTML: How to redirect users to a variable url depending on their form input?

I've the problem that I want to use a payment system for my website for which I need to setup a system by which users get redirected to a url. This url needs to contain their own username on the ...
1
vote
1answer
32 views

Find and replace, looped through all tables in oracle DB

I am trying to loop through every table in an oracle DB, and find and replace a string value. I want to find all instances of a string value, replace it with another string value, for all entries in ...
1
vote
4answers
51 views

vim: how to replace something only in a column

I want to replace to symbols ":" and "-" both to tab in the first column of a file: The input is like: chr1:100-200 1 2 3e-4 chr2:300-400 4 5 6e-4 And I want the output to be: chr1 100 200 1 2 ...
0
votes
2answers
25 views

How to replace non-numiric characters from a string MySQL

I need a better way to replace a non-numeric characters in a string. I have phone numbers like so (888) 488-6655 888-555-8888 blah blah blah So I am able to return a clean string by using a simple ...
0
votes
0answers
39 views

how to replace a group of character in a string

I have a string variable "full". also I have a string array which has 40 cells. Each cell has a group of character like "x1" or "x1'". I want to search all of this cells in the "full" string and when ...
0
votes
3answers
27 views

Using sed to replace one line (that might change) with another

I want to run a script that changes a line in the HTML code, indicating when the page was last updated. So for instance, I have the line <d>This page was last updated on 29.04.2013 at 00:34 ...
0
votes
0answers
7 views

Capistrano find replace in entire database

I am using capistrano to deploy my website. In my database there are alot of variables in different tables (which I do not know in advance which) that depend on the environment. How can I, using ...
-1
votes
5answers
47 views

Replace substring not working

I am working in asp.net mvc. want to replace \ character to / character. But it is not working. Let string path="D:\Qamar\Cartoons\Image.jpg"; path=path.Replace("\","/"); I get error in second ...
-2
votes
0answers
27 views

Search Linux server from old IP's in all files and replace with new IP address

If I want to search from all files, not in htm or html, how do I do that? I need to replace IP addresses in DNS files. And also in other files, like webpage configuration files. There are lots of ...
0
votes
1answer
32 views

How to allow a-z 0-9 and '+' in a string and remove all others?

How to allow a-z 0-9, 'space' and 'plus' in a string and remove all other characters? My string is: RIOT☩ DANNY/DA'ZE-U+S ☩ SATURDAY ☩ MAY 18TH ☩ SIMONS can any body help me?
0
votes
0answers
6 views

notepad search and replace with stack entry

Using Notepad++, I am searching for an HTML tag and trying to replace it with a text string from a stack. This starts with: <div class="title">Book1</div><a href="#"> <div ...
1
vote
1answer
16 views

javascript replace is replacing nested words

I am creating a google chrome extension that messes with the words on whatever website you are reading, but I am having trouble with this section of code specifically. if(Math.random() > ...
0
votes
2answers
38 views

Replace characters in a string with whitespaces

I am writing a simple Python script that retrieves the latest tweet of any twitter user (in this case BBC) and uses the integrated text-to-speech system on Mac to read out the content of that ...
0
votes
1answer
39 views

ruby gsub function in java, replaceAll maybe?

I've been trying to translate this funcFormat = funcFormat.gsub(/sqrt\((.*)\)/,'Math.sqrt(\1)') to this in java funcFormat = funcFormat.replaceAll("sqrt((.*))","Math.sqrt($1)"); or is ...
0
votes
1answer
24 views

Putting data from HTTP POST in a CSV with PHP?

I'm writing a basic android app that sends GPS data via HTTP POST to a PHP page. I want the data to just be the two values (latitude and longitude) separated by a comma. <?php $myFile = ...
-3
votes
3answers
41 views

Replace Text in jQuery [closed]

HTML: <textarea></textarea><br /> <a href="#">Generate</a> <span id="output"></span> jQuery: $('textarea').bind('keypress', function(event) { var ...
1
vote
1answer
35 views

How to replace instances of a char by ints, then access an array with them

I'm trying to call this function on a string and pass in a 3d char array. The function should replace all instances of 'u' in the word with '0', 'c' with '1,' etc... Then I want it to reference the ...
0
votes
2answers
27 views

Visual Studio 2012- Find and Replace - backreferences

I have an XML file and want to replace every time value from seconds to milliseconds. For instance, replace time="250" to time="250000". I tried using the following Find: time="([0-9]*)" ...
0
votes
4answers
56 views

Correct way to do a string replace with regex in javascript?

I am a newbie to regex and my expression appears to be backwards or opposite of what I am trying to do. I have a string, in this case a url, and I basically want to replace everything up to and ...
2
votes
2answers
2k views

Find and replace a URL with grep/sed/awk?

Fairly regularly, I need to replace a local url with a live in large WordPress databases. I can do it in TextMate, but it often takes 10+ minutes to complete. Basically, I have a 10MB+ .sql file and ...
2
votes
2answers
6k views

jquery/javascript: replace string inside of html()?

the following variable … var breadcrumbs = $('#trail').html(); … contains: <href="page1/">Page 1</a> <strong>»</strong> <a href="page2">Page 2</a> ...
1
vote
6answers
1k views

How to replace the some characters from the end of a string?

My question is very simple, but I didn't get the answer from google. There is a python string: s = "123123" I want to replace the last 2 with x. Suppose there is a method called replace_last: r ...
1
vote
1answer
4k views

Javascript - Replace '%20' spaces

var loc_array = document.location.href.split('/'); var linkElement = document.getElementById("waBackButton"); var newT = document.createTextNode(loc_array[loc_array.length-2]); var repl = ...
46
votes
7answers
10k 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 ...

1 2 3 4 5 121