This function returns a string or an array with all occurrences of search in subject replaced with the given replace value.

learn more… | top users | synonyms

1
vote
3answers
42 views

How to replace text in a file with str_replace?

Something like this: $vars = array("key" => "value", "key2" => "value2" //..etc); function ($template, $vars) { $file = file_get_contents($template); foreach ($vars as $key => $value) { ...
1
vote
1answer
179 views

How to match and replace Email template with dynamic query result in Sql Server

We are developing email messaging system where our email html templates are saved in database column i.e. hello user {0} Another column in the same row has dynamic sql related to this ...
0
votes
2answers
36 views

replacement in line php

I have a tag in an XMLlike this: <element name="bar">content</element> <element name="student">xyz</element> For many of reasons I must modify this XML. I'm trying to ...
3
votes
2answers
120 views

can't replace \n in php with content from database

I try to avoid asking stupid questions, but this for some reason is just not working. I'm retrieving some text from a database, with newlines included. When using echo straight away, this is the ...
0
votes
1answer
78 views

Insert data from one input into two mysql columns

I have a simple insert.php formular that got created by Dreamweaver CS5. I want to be able to enter my News headline in this formular into the column "news_headline" in my database and then ...
0
votes
3answers
52 views

Need to replace every letter of inputed text with another specific letter

I need to create program that takes the originalText and replaces each letter in the originalText with a new specific letter then prints it out as mixedLetterText. This is what I have but it only ...
0
votes
0answers
82 views

phpmailer html email passing variable to external html file

I am using a phpmailer class to send confirmation email to user. $mail->MsgHTML(file_get_contents('content.html')); I have a "content.html" page in where I like to pass user's last name ...
0
votes
2answers
41 views

str_replace shows error with array

I've the following function and using str_replace it shows error on replace function repo($text){ $search = array("0","1","2","3","4","5","6","7","8","9"); $replace = ...
1
vote
1answer
27 views

Value replacement function with ambiguity protection

I'm trying to replace values in string and I want to prevent potential confusions. My function: <?php function newValue($str, $from, $to) { return str_ireplace($from, $to, $str); } $new = ...
2
votes
1answer
80 views

Apply rule to text but not within div or element

so I basically want to manipulate a specific tag in the containing html of a textarea (using just javascript) without touching the rest, for example: <textarea> some stuff here ...
0
votes
1answer
85 views

Query multiple taxonomies group slugs

I have a checkbox function that I'm using for my search query. My problem is the url created when I search. ...
1
vote
2answers
62 views

how do i delete <?= $var ?> in a chain with php

how do i delete <?= $var ?> from a chain (a url in this case). Here is what I already tried: $link = str_replace("<?= $var ?>", "", $link); but when i echo $link;, nothing appear. (I ...
0
votes
0answers
41 views

Search and replace in SimpleXMLElement

I loop through an XML file. Once I find a certain node I take it's value and change all it's occurrences in the whole document. XML <?xml version="1.0" encoding="UTF-8"?> <catalog ...
0
votes
3answers
82 views

More than one function on one variable

I want to write something in the database, but before I want to delete all spaces in the string and upper the first letter. That's how I wanted to do it but it doesnt work :P //INITIALIZATION OF ...
0
votes
1answer
82 views

replacing relative image src with absolute ones on joomla

I need to mail some html code stored in the database. For the images to show as well, I need to replace the relative path with absolute ones. I have a variable called $display, which holds the HTML. ...
1
vote
1answer
41 views

excess comma replace issue after creating auto links from tags

HiMy issue is inside the if statement below. My tags structure is like this : tag1, tag2, tag3I achieved auto linking of each tag of each article but:If # of tags is more than 1, I need to replace two ...
0
votes
1answer
56 views

Is it possible to str_replace or preg_replace the output of a javascript call?

I have a page that calls content into the page from a third party using javascript. What I need to do is preg_replace or str_replace the output for the purposes of translating a few words (ie days of ...
0
votes
2answers
27 views

link: issue with symbol " (might be an encoding issue)

I have a link generated on my page as <a href="#" onClick="loadList(5); return false;">5</a> The problem is that when I click on the link it redirects me to <a #" ...
1
vote
1answer
159 views

Add variable to link in wordpress archive widget

I've got a problem with the default wordpress Archives widget. I want to add a variable to each link it outputs. But for some reason it doesn't seem to add the variable to the link or any normal text. ...
0
votes
2answers
39 views

Identifying and deleting line breaks

I am using cURL with php to parse with DOM some html content. Then I put the content as string in variables and create an array. Here's my problem, I got something like Array ( [firstname] => ...
1
vote
1answer
153 views

Convert Æ Ø Å into AE OE AA [duplicate]

Im having problems to convert æ, ø, and å into ae, oe and aa. I am trying to make a seo friendly url with this function, but it just removes the æøå signs. My function is: function ...
-1
votes
2answers
198 views

ajax data doesn't return correct jQuery html object

When I convert html data from my partial view to $(data) it doesn't return jQuery object I was hoping for like: console.log($(data)) -> [#document] Instead it returns this: console.log($(data)) ...
0
votes
3answers
85 views

php remove a line after specific words with str_replace

there is text in file as example: <div class="from">jack</span></div> hey u <div class="from">ron</span></div> bye i am trying to delete the new line tag after ...
0
votes
1answer
88 views

Javascript templating function replace string and dont take care of whitespace

I've written some days ago a simple templating function, problem now is that whitespace will kill the tag. So when I type something like this: <div id="str">#{my} #{name} #{is} ...
1
vote
1answer
88 views

Include “<?php include('myfile.php')” in an html file with str_replace

I have to replace a block of text in around 2 000 files and replace it by an include('myText.php'); The problem here is, it's in a html file. In that case i also need to put the php tags in it but i ...
2
votes
1answer
36 views

how do I replace < with >= and > with <= and replace <= with > and >= with < if they occur multiple times in the same string?

I'm working on this in PHP. I have a string like this: "AND day_1 >= day_2 AND day_1 < day_3" and I want to replace the first >= with < and I want to replace the second < with >= In other ...
0
votes
2answers
80 views

How do i bold the text in a php str_replace function?

<?php $xml = simplexml_load_file("xmldocumentation.xml") or die("Error: Cannot create object"); foreach($xml->children() as $pages){ foreach($pages->children() as $page => ...
11
votes
6answers
561 views

String.replaceAll() is not working

I am editing some email that got from tesseract ocr. I wrote my code like this if (email != null) { email = email.replaceAll(" ", ""); email = email.replaceAll("caneer", "career"); ...
-1
votes
1answer
92 views

Can't Replace Single Quote [closed]

I'm using the following two replaces to try to remove a single quote as I'm making folders with scraped names, and anything with a single quote cant have a folder made. Even with this code it still ...
1
vote
3answers
121 views

PHP - Issues removing “\r\n\r\n” from this string: “I would like to:\r\n\r\n1.) Rid this mess\r\n\r\n\2.) Now Please”

I start out with a string like this : "I would like to:\r\n\r\n1.) Rid this mess\r\n\r\n\2.) Now Please" (this is 'cleaned' user input text). So essentially my statement would be this : $query = ...
0
votes
1answer
90 views

Target str_replace() to work on only one element in wp-admin

Is it possible to use PHP's str_replace() function to target only select DIV's within a page (identified by ID or classes for example)? The situation: I'm using the following str_replace() function ...
0
votes
0answers
37 views

php str_replace if filename.jpg is random text [duplicate]

i have image search directory and i use filename to be title. example, if image filename is: foo-bar.jpg so the title is: "Foo Bar". now, how if i got random filename like ...
0
votes
0answers
22 views

Using STR_REPLAC with $_REQUEST sending HTML

I am trying to send HTML code in a basic form to try and replace parts of it. But the code does not change. However, it does change when I do not request the same code from the form: <?php ...
0
votes
1answer
97 views

PHP/Mysql - Add form data HTML elements with line breaks

Basically, I have an administration area where users are to be able to add information to a MySQL database using a form textarea. The users have little or no HTML knowledge so I'd like them to be ...
-2
votes
1answer
204 views

String Replace - Add Slash Before Single Quote [closed]

I'm trying to escape a single quote within my PHP by adding a slash before it. Unfortunately, I've been unable to get it working with str_replace and I'm wondering if I'm doing something wrong. What ...
1
vote
2answers
124 views

str_replace doesn't work with slash

For some reason str_replace() does not work with /. I am creating a function to accept a unique linking style in input and text area forms for a blog CMS that I am making. For instance, ...
0
votes
0answers
17 views

Foreach and str_replace problems

I'm trying to use str_replace inside an foreach loop, but all it does is replacing the strings into the last url from the array. The code looks like this foreach($bilder as $bild){ $patterns[$y] ...
0
votes
1answer
149 views

PHP / Replace non latin characters with its counterparts

WORD AŠA PHP <?php foreach (glob("*.jpg") as $filename) { $search = array("Š"); $replace = array("S"); $newname = str_replace($search, $replace, $filename); echo ...
0
votes
0answers
67 views

str_replace not replacing string on mail send

I'm trying to use str_replace() to insert the users name when sending out the email. It's not working, am I missing something? The email is processed but <!--{Username}--> is not replaced with ...
-1
votes
2answers
144 views

Looking for PHP-like str_replace() for C/C++ but WITHOUT malloc()/realloc(), using the original buffer

I was looking for a PHP-like str_replace() for C/C++, but I found only solutions which allocate/reallocate buffer for the result. In embedded environment, it's not always possible, there are no memory ...
1
vote
4answers
136 views

“\\\\”.replaceAll(“\\\\”, “\\”) throws java.lang.StringIndexOutOfBoundsException

The following code fragment in Java: "\\\\".replaceAll("\\\\", "\\"); throws the exception: java.lang.StringIndexOutOfBoundsException: String index out of range: 1 (NO_SOURCE_FILE:0) The javadoc ...
0
votes
3answers
50 views

PHP str_replace() for $category['name'] substrings

I am echoing out category names for a menu with: <?php echo $category['name']; ?> where 'name' is an array : Purina Dog Food, Purina Cat Food, Eukanuba Dog Food, Eukanuba Cat Food,... I ...
0
votes
2answers
97 views

php file_get_contents() str_replace &nbsp; with “”

I am having problem with Google's Currency api. Data I am receiving contains: {lhs: "1000 Euros",rhs: "111 844.933 Serbian dinars",error: "",icc: true} where "111 844.933" is actually "111*& ...
0
votes
0answers
56 views

How do you add custom mark-up to a PHP comment system while using addslashes()

So, I'm using: $comment_content = sanitize(mysql_real_escape_string(addslashes(htmlentities($_POST['comment_content'])))); And would also like this code to use custom mark-up for such things as ...
0
votes
1answer
175 views

How can I convert ANSI Extended ASCII (Windows) to UTF-8 or html entities with PHP? [duplicate]

Possible Duplicate: PHP Ansi to UTF-8 I have data that occasionally includes various ANSI Windows ASCII characters (i.e., x99 for TM, xA9 for copyright, xAE for registered trademark, etc). ...
0
votes
2answers
38 views

Posting Data To Mysql with IDs

I have a form with some input texts. It's counted with the name + an id. Like: megnevezes_1 megnevezes_2 My form has also a counted id tag, called tid_1 and go on. When I post my form i made a ...
-3
votes
6answers
114 views

str_replace , / not working [closed]

I need to find \ in a string. Example $replacevalue = "%20"; $area = "test\abc.htm"; $valuetoreplace = "\"; $area = str_replace($valuetoreplace,$replacevalue, $area ); But it seems like the ...
0
votes
2answers
102 views

how to shorten url by htaccess?

I have this .htaccess line: RewriteRule ^forum_(.*).html forum.php?frm=$1 [L] and I have this php line : $url = str_ireplace('forum.php?frm=', 'forum_.html', $url); but the url become like this: ...
0
votes
1answer
70 views

how to str_replace variables $name to file

When I try to str_replace in file name is fff.php I cannot to print $var name not value to the file. <?PHP $path_to_file = 'fff.php'; $var_str = var_export($viewer, true); $file_contents = ...
0
votes
1answer
62 views

How can I perform an equivalent of php str_replace in JavaScript?

How can I perform a case-sensitive string replacement in JavaScript? I am looking for something similar to PHP's str_replace. var text = "this IS some sample text that is going to be replaced"; var ...

1 2 3 4 5 13