This function returns a string or an array with all occurrences of search in subject replaced with the given replace value.
0
votes
1answer
42 views
PHP: Wrapping all matching characters in html
I want to wrap all slashes "/", and parenthesis "(" and ")" in the same html. Is there a less repetitive way to do this with PHP? A regex perhaps? Right now I'm using the following code:
$para = ...
-2
votes
3answers
38 views
php changing white space within the string [closed]
I cant change the white spaces of string to - . the error is Parse error: syntax error, unexpected T_VARIABLE
here's my code
$realname = "This is the string"
$newVariable = str_replace(" ", "-", ...
0
votes
1answer
32 views
replace a string with double quotes and a pattern using str_replace
i want to replace src="images/imagename.jpg" to src="http://xyz.com/images/imagename.jpg"
i tried doing with str_replace. But this does seems to have issue with double quotes. Any easy solutions ...
0
votes
3answers
158 views
Remove all backslashes from a string - php - regex [closed]
my string is
$str = '<img src="\"images/hai.jpg\"" alt="" /> Text <img src="\"images/hai.jpg\"" alt="" />';
i want to remove all \" from the string.
1
vote
3answers
136 views
Why is str_replace not replacing this string?
I have the following PHP code which should load the data from a CSS file into a variable, search for the old body background colour, replace it with the colour from a submitted form, resave the CSS ...
3
votes
6answers
189 views
str_replace with a bunch of code php
I have some content coming from database. And I want to replace the specific word of the content with a bunch of code.
Content coming from database is for example:
Thank you for interest on our ...
-1
votes
4answers
29 views
how can i use '\' in php
anyone know how i can use
$utf8string = str_replace('\',"\",$utf8string);
in php?
because i cant use ' after \ and its give me an error
and if i write
$utf8string = str_replace('\ ...
0
votes
1answer
58 views
Replace the string for each occurance in php?
I would like to do some simple replacement using php.
For the first occurance of "xampp" , replace it as "xp",
For the second / last occurance of "xampp" , replace it as "rrrr"
$test = ...
2
votes
1answer
39 views
Remove any number into a string in PHP
I'm trying to remove the numbers into the element id using this code, because in my code I would like to remove the strings that contains id="###":
for($cont = 0;$cont<3000;$cont++)
{
$strcont ...
3
votes
2answers
38 views
Str replace and logical
I want to replace { by {{} and } by {}}, because, I need to escape those { & } with {}.
if I've as input {blah} I want my script to output {{}blah{}}, see?
But it is not working look at what I did
...
0
votes
1answer
120 views
Alter image path using str_replace or preg_replace
Hello friends I am having trouble getting desired results using str_replace (); function of PHP.
My code is like this:
<?php ob_start (); /* Start Buffering */
$layout = 'climate';
?>
...
3
votes
2answers
870 views
str_replace with array
I'm having some troubles with the PHP function str_replace when using arrays.
I have this message:
$message = strtolower("L rzzo rwldd ty esp mtdsza'd szdepw ty esp opgtw'd dple");
And I am trying ...
0
votes
2answers
108 views
Is it possible to add a <script> tag into HTML with PHP str_replace?
I have en exercise Im working on right now where we can't use libraries. I have a REST based system that instantiates different PHP classes depending on what needs to be done. I have several HTML ...
0
votes
1answer
110 views
PHP, Replace all occurrences of page=number
I need to remove all occurences of &page=* from a string, where * is a number. How would I do that with regexp(?)
So far I've been using,
$this->targetpage = ...
0
votes
1answer
61 views
preg_replace to include decimal point
I have currency values within a table and for filtering I want to show only the numbers without currency symbols, but, I need the decimal point, here's what i'm using
$price_check = ...
1
vote
1answer
355 views
str_replace for br tags not working
I have a textarea field on a form that a user submit and it gets saved to a MySQL database. When I retrieve the value, I'm running nl2br to convert the line breaks to br tags. Then I'm using ...
0
votes
2answers
42 views
How to replace a portion of a dynamic php string
I have a page that is calling dynamic URL content from MySQL via Primary ID. The information is being called and echoed as
"../images/icons/filename.jpg"
via this command:
<php echo ...
0
votes
2answers
95 views
PHP Replace chars by functions
I try change characters by functions
<?php
$string = "Hi everybody people [gal~images/articles~100~100~4] here other imagen [gal~images/products~100~100~3]";
$regex = "/\[(.*?)\]/";
...
0
votes
2answers
170 views
PHP file_get_contents then replace string in a function
**User_Tpl.html**
<html><head></head>
<body>
Hello {NAME},
Business name : {BUSINESS_NAME}.
Tel : {TELEPHONE}.
Mob : {MOBILE}.
</body>
</html>
function ...
-1
votes
1answer
57 views
Php preg_replace_callback no work me
I try replace characters from string and put others , for this use preg_replace_callback function , the problem is this function change order of original text and show differents results
For example ...
0
votes
1answer
227 views
php str_replace with function
It´s possible use str-replace and use function in replace ?
$value="gal($data)";
$replace=str_replace($dat,$value,$string);
gal($data) it´s function and i need replace one code for this function ...
0
votes
0answers
72 views
Php and replace no work me right
I try clean string for select tags , i put my code and explain the bugs in the code :
<?php
$string = "Hi everybody , how are you ? [gal~imagenes/articulos~100~100] And the question it´s ..... i ...
0
votes
2answers
155 views
Making multiple replacements using str_replace in php
OK here's the problem:
I'm trying to write the query function for a database class in my project and I want to make it easier to escape the sql and check if it is harmful to the database in anyway.
...
0
votes
2answers
85 views
php str_replace hex color
how do you replace this string *#ff00ff Hello World *000000 to <span style='color:#ff00ff'> Hello World </span> using str_replace?
Thanks.
1
vote
1answer
37 views
Regular Expressions during Preg_replace
I have been looking around now for a while, and I have spent a good amount of time with trial and error, and still can't get things right :/
What I am trying to do is take a string like a url:
...
0
votes
2answers
46 views
How to remove \"
String (JSON): {"title":"\"Copper\""}
I have tried
$output = str_replace('\\"', "", $output);
but I got
{"title":"" Copper""}
What I expect
{"title":"Copper"}
1
vote
1answer
69 views
How can I combine ucwords and str_replace if I'm replacing several words/characters?
This works to combine ucwords and str_replace if I only need to replace one character:
echo str_replace('_', ' ', ucwords($cname));
This works to replace words/characters:
$search_name = ...
0
votes
0answers
108 views
simple php based forum - adding str_replace and trim() function
I am stuck with some php. I am pretty new to php and a bit lost.
It's supposed to be basic forum script with fields for a subject, the author's name and a text area.
Functions are called from a ...
6
votes
2answers
192 views
Regex str_replace
Would it be possible to incorporate a str_replace method with a regular expression, designed to catch url strings in a simple html < textfield > input type?
I'm considering something simple like a ...
0
votes
0answers
88 views
Saving non-ASCII text to a mysql database
I want to save a value containing — in my mysql database.
A echo before inserting the data in the database is fine, but when I look in the database it is saved like —.
I already added the following ...
0
votes
5answers
171 views
advanced php templating using str_replace arrays
I created some templating system to help me output database items in a skinnable way. It works like this:
$tpl = "<html>
<body>
<div><span class="item">Favourite ...
-3
votes
4answers
59 views
Why does this fail? [closed]
Why can't i do a str_replace function this "\"?
My string when transferred via get comes up with this infront of every 's.
When i try replacing this away, it comes up with an error page.
Any ...
3
votes
3answers
112 views
str_replace don't work for some chars
I wrote below code but it works wrong:
$t = "۰۱۲۳۴۵۶۷۸۹٤٥٦";
$correct = array("0","1","2","3","4","5","6","7","8","9","4","5","6");
$wrong = ...
0
votes
2answers
81 views
PHP str_replace weird results
i have these codes:
$alphabet = array("a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z");
$first = ...
0
votes
1answer
47 views
Replace text to number php
I need to replace a simple text with comma inside to number.
CSV File:
Test1
Test1, Test2
Test1, Test2, Test3
php code
$text = "Test1";
$text1 = "Test1, Test2";
$text1 = "Test1, Test2, Test3";
...
0
votes
1answer
16 views
Replace.string with a URL as parameter
Below I have this code:
string _strTemplate = _strDownloadTemplate + IDReq + "/" + _strFileName;
Uri url = new Uri(_strTemplate);
As you can see, I'm converting the strTemplate (which carries the ...
0
votes
1answer
149 views
str_replace, replacing word with div causes break in p tag
The code below searches WordPress content for words and replaces these words with a link and a div. It creates a problem where the div closes the <p> tag it was inserted into.
$myposts = ...
1
vote
2answers
105 views
String Replace Three Characters in a Row
What I have is "text - something else", now with the below code I can convert it to "text-something-else", but I'm unhappy with the extra replace. Is there anyway to merge each into one line?
...
0
votes
3answers
179 views
replacing string values in external file using str_replace
I have a script that is duplicating a file, but after I duplicate that file, I need a script to dynamically change certain string values inside that file.
Through searching around I found that ...
0
votes
3answers
87 views
foreach two arrays with str_replace
Lets say I have two arrays got from pre_gmatch:
preg_match_all('#<div class="cloud_flow_big">(.*?)</div>#is', $mystring, $names, PREG_SET_ORDER);
preg_match_all('#<div ...
0
votes
1answer
46 views
Evaluating {if} In a string
I am working on a taggable report system where a textblock will store information like this:
This is a line with a {TAG} . The {TAG} will be replaced with normal text via str_replace.
{if 1==1}
I ...
-7
votes
1answer
139 views
Trim() and strrepl() in C++ how can I use them in C#?
What are the equivalent in C# ? and how can I implement them?
0
votes
3answers
63 views
php Swear code doesn't quite work
I have this code below which works ok ish.
$swearWords = file("blacklist.txt");
foreach ($swearWords as $naughty)
{
$post = str_ireplace(rtrim($naughty), ...
0
votes
6answers
60 views
php string replace baffled me
This is not working, what's going on it should be so simple :-(
$test = "hello naughty";
$swearWords = array("naughty","notallowed");
foreach ($swearWords as $naughty)
{
$post = ...
-1
votes
1answer
114 views
str_replace in file names
I have a PHP code that displays the file contents of a directory in a list. Each file is linked so that if clicked, it will download or open. The files inside the directory will be files uploaded by ...
1
vote
1answer
76 views
Java :String replace to convert time
I'm trying to convert time that is stored in a database as type string and print it in the appropriate format. I tried using .replaceAll. This resulted in 5:3 being replaced as 05:03 but also turned ...
0
votes
0answers
125 views
How to change post title link destination in WordPress RSS feed using str_replace?
This question is regarding a WordPress installation that is using the same database from another WordPress website installation (but the 2nd website uses a different template).
In other words, ...
0
votes
2answers
123 views
Replace foreign characters with latin counterparts, and spaces with hyphens (PHP)
I have this code:
$header = 'weird character->>>ÅÅÖÄ';
$header = strtolower(str_replace(array(' ', ' '), '-', preg_replace('/[^a-zA-Z0-9 s]/', '', trim($header))));
It should output ...
-5
votes
2answers
459 views
Array to string conversion
$replacements = array(
'{order_id}' => $order_id,
'{site_url}' => $settings["site_url"],
'{email}' => $user_email,
'{last_name}' => $last_name,
'{phone}' => ...
0
votes
1answer
122 views
How to prevent strip plus sign with codeigniter url_title function?
I am using that function in order to prevent wrong URL structure:
<?
if (!defined('BASEPATH'))
exit('No direct script access allowed');
if (!function_exists('seo_helper')) {
function ...

