Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
215 views

When to use strtr vs str_replace?

I'm having a hard time understanding when strtr would be preferable to str_replace or vice versa. It seems that it's possible to achieve the exact same results using either function, although the ...
5
votes
4answers
425 views

array_map with str_replace

Is it possible to use array_map in conjunction with str_replace without calling another function to do the str_replace? For example: array_map(str_replace(' ', '-', XXXXX), $myArr);
5
votes
6answers
5k views

Python string.replace() not replacing characters

Some background information: We have an ancient web-based document database system where I work, almost entirely consisting of MS Office documents with the "normal" extensions (.doc, .xls, .ppt). They ...
5
votes
3answers
2k views

PHP string replace match whole word

I would like to make a whole word replace using php Example : If I have $text = "Hello hellol hello, Helloz"; and I use $newtext = str_replace("Hello",'NEW',$text); The new text should look ...
5
votes
3answers
71 views

PHP, what is the better choice for removing a known string?

I am looking to search for and replace a known string from within another string. Should I use str_replace() or preg_replace()? The string to be replaced would be something similar to [+qStr+], ...
5
votes
6answers
3k views

Escaping escape Characters

I'm trying to mimic the json_encode bitmask flags implemented in PHP 5.3.0, here is the string I have: $s = addslashes('O\'Rei"lly'); // O\'Rei\"lly Doing json_encode($s, JSON_HEX_APOS | ...
4
votes
1answer
94 views

Replace text with hyperlinks where there isn't already one

A better example would be this: $string = "That is a very nice ford mustang, if only every other ford was quite as nice as this honda"; I want to replace the car names with a link for manufacturer ...
4
votes
5answers
58 views

Replacing certain characters in javascript

Coming from a PHP background, I am a little spoiled with the str_replace function which you can pass an array of haystacks & needles. I have yet not seen such a function in Javascript, but I have ...
4
votes
2answers
87 views

is there a way to use tr/// (or equivalent) in java?

I would like to know if there is an equivalent to tr/// (as used in Perl) in Java. For example, if I wanted to replace all "s"s with "p"s in "mississippi" and vice versa, I could, in Perl, write ...
4
votes
7answers
109 views

php str_replace replacing itself

I need to replace every occurrence of one of the letters a,o,i,e,u with [aoieu]? I tried to do the following: str_replace(array('a', 'o', 'i', 'e', 'u'), '[aoieu]?', $input); But when giving it ...
4
votes
7answers
1k views

PHP readdir with european characters

I get images files which have Czech characters in the filename (eg, ěščřžýáíé) and I want to rename them without the accents so that they are more compatible for the web. I thought I could use a ...
3
votes
3answers
89 views

Cannot replace £ with &pound from string

I have a HTML string containing £ signs, for some reason i'm not able to replace them. I'm assuming this is an encoding issue although i can't work out how. The site is using ISO-8859-1 for its ...
3
votes
5answers
130 views

Str_replace for multiple items

I remember doing this before, but can't find the code. I use str_replace to replace one character like this: str_replace(':', ' ', $string); but I want to replace all the following characters ...
3
votes
4answers
165 views

How to get rid of backslash(“\”)character from a string

Is there a way, where i can avoid the '\' character from a string ? //bit array BitArray b1 = new BitArray(Encoding.ASCII.GetBytes("10101010")); BitArray b2 = new ...
3
votes
2answers
93 views

Support needed for preg_replace to detect language tag and remove other language data

I have a data string which contains 3 different language content enclosed in corresponding tags. /[langStart-en] and //[langEnd-en] for English /[langStart-ar] and //[langEnd-ar] for Arabic ...
3
votes
4answers
121 views

PHP using regular expressions to extract content from a string

I have the following String and I want to extract the "383-0408" from it, obviously the content changes but the part number always follows the String "Our Stk #:", how can I most elegantly extract ...
3
votes
2answers
504 views

Coding a domain lookup tool

I have been coding a domain checker and really stuck with the php. This is what i have so far: <?php set_time_limit(0); ob_start(); $domain = $_GET['domain']; ########### Extensions to be checked ...
3
votes
5answers
368 views

PHP, problem with str_replace while reading from array

i am new to php, and i am trying to do a script that reads an CSV file(file1.csv) and compare the words in the file with words in a html file (file2.html), if word in file2.html match with the key ...
3
votes
3answers
2k views

PHP explode the string, but treat words in quotes as a single word

How can I explode the following string: Lorem ipsum "dolor sit amet" consectetur "adipiscing elit" dolor into array("Lorem", "ipsum", "dolor sit amet", "consectetur", "adipiscing elit", "dolor") ...
2
votes
1answer
35 views

Javascript String.replace() ,ambiguous results

See my code <html> <body> <script type="text/javascript"> var str="Visit Microsoft!"; document.write( str = str.replace("",'ss')); </script> </body> </html> ...
2
votes
7answers
57 views

Droping words from a string in php

i have a string showing 1 - 12 of 324 Results i want to stip this string like 324 Results or 324 only Note that, 324 is figure that will change every time the string is ...
2
votes
4answers
72 views

PHP preg_match to find relevant word

I have a variable with value like this : $sentence = "When it comes time to renew your auto insurance policy, be aware of how your carrier handles renewals"; And I have array variables with value ...
2
votes
1answer
69 views

PHP Str replace function with special html characters

My script extract span with it's attributes. I want to replace span with attributes with something else. I am using following piece of code, maybe cause of special characters it doesn't work. ...
2
votes
1answer
61 views

str_replace() does not work for some characters

For exemple, if I use a function like: function string_cleaner($string) { $replace = array('Ø', 'ø', 'ă', 'ü'); // more and more special chars $replacement = array('', '', 'a', 'u'); ...
2
votes
3answers
32 views

Switch text with str_replace and arrays

Here's something interesting I've just found out regarding str_replace(). In my function I need to make two mysql queries which are the same with the slight change on sorting the result. As an ...
2
votes
2answers
143 views

Jquery replace all strings starting with # and add link

I have a large blocks or text on a message board that will contain strings beginning with #. Can I use jquery to replace these with a link containing the string? For example, changing: <div ...
2
votes
3answers
106 views

str_replace with strpos?

The str_replace function with a strpos checking can avoid extra work? METHOD 1 ... if (strpos($text, $tofind) !== FALSE) $text = str_replace($tofind, $newreplace, $text); ... METHOD 2 ... $text ...
2
votes
4answers
71 views

Does PHP str_replace have a greater than 13 character limit?

This works up until the 13th character is hit. Once the str_ireplace hits "a" in the cyper array, the str_ireplace stops working. Is there a limit to how big the array can be? Keep in mind if type ...
2
votes
3answers
68 views

Using str_replace to test for existence in an array

I have the following function function blah($string) { $match = array('red', 'green', 'blue'); $replace = array('1', '1,', '0'); return str_replace($match, $replace $string); } What I'm ...
2
votes
1answer
179 views

Javascript: replace string function not working in IE7-8

I've created a JSFiddle that shows my program: http://jsfiddle.net/8Fx3a/10/ As you'll see when a user types in the input field and clicks 'go' the program will try to find that value in the list of ...
2
votes
2answers
101 views

str_replace gives wrong result

I got data like this: "ӘІҢҒҮҰҚӨҺ". hexing this data to this: d398d086d2a2d292d2aed2b0d29ad3a8d2ba then adding "\'" for *.rtf format: \'d3\'8d\'86\'2a\'d2\'2d\'ae\'2b\'d2\'ad\'a8\'2b and then I must ...
2
votes
1answer
38 views

The str_ireplace and preg_replace attemt?

I am trying to replace a string from an original text. ( zinc --> zn ) Example: 'zinc zinc zinc zinc3 !zinc zincmatic #zinc zinc9 Zinc @zinc@' Want: 'zn zn zn zinc3 !zn zincmatic #zinc zinc9 zn ...
2
votes
2answers
86 views

String replace regex take tokens only outside []

I am trying to replace all the spaces in string with '+'. But it should ignore ignore the spaces inside the []. Do anyone know how to do this using regular expression. Example: latitude[0 TO *] ...
2
votes
2answers
65 views

Remove Part of String Perl

I have this in perl return "$file->{srv_cgi_url}/dl.cgi/$hash/$fname"; where $file->{srv_cgi_url} returns http://s1.site.com/cgi-bin/ how can I remove the trailing /cgi-bin/ from the ...
2
votes
4answers
252 views

strstr replace multiple variables in an array PHP

I'm working on a list of products that are written in multiple languages. I have an array for each product that displays it's languages like this: Array ( [0] => DA [1] => DE [2] => EN [3] ...
2
votes
3answers
645 views

How can I replace white space in filename of uploaded file

I'm making a SWF uploader and have my HTML form done. It works totally fine until I upload a SWF file with spaces in the name. How can I replace whitespace with underscores? I have tried... ...
2
votes
7answers
272 views

scan a string and replace tags with links

I have an array like this: $keywords = array( 'php', 'html', 'css' ); I have a db query to return a paragraph, which contains the keywords previously mentioned in the array. I have a link ...
2
votes
2answers
87 views

Help with str_replace()

I'm cleaning a string removing strings in this array: $regex = array("subida", " de"," do", " da", "em", " na", " no", "blitz"); And this is the str_replace i'm using: for($i=0;$i<8;$i++){ ...
2
votes
4answers
370 views

why javascript string replace using regex removes a “/” from my br tag

I'm using javascript with a super simple regex to replace a "<" with the HTML character code for it so I can place some code on my site using the pre and code tags and have it done automatically. ...
2
votes
3answers
688 views

PHP preg_replace/preg_match vs PHP str_replace

Can anyone give me a quick summary of the differences please? To my mind they both do the same thing? Thanks
2
votes
7answers
68 views

php find replace

This is more of a "best practices" question. I have a few email templates, that have several tags I need to find and replace. For example: Dear [[customername]], Blah blah blah blah, and more blah. ...
2
votes
1answer
120 views

php str_replace question

Strange one, I must be missing something. $city = "vancouver"; $insert1 = "https://www.site.ca/buy/vancouver/28130965/"; $url2 = str_replace('/$city/','index.php?deal=',$insert1); ...
2
votes
4answers
2k views

How to replace tab with &nbsp; in PHP?

In my database I have the following text: for x in values: print x I want to print this code on my HTML page. It is printed by PHP to the HTML file as it is. But when HTML is displayed by a ...
2
votes
2answers
210 views

no str_replace in a div tag

I want to replace som chars with a specific string except for a div. Here is my str_replace : // smileys $in = array( ':)', ':D', ':o', ':p', ':(', ...
2
votes
5answers
108 views

I overused str_replace and can't figure out a better way

Using PHP I am running str_replace many times in a row to switch one thing out with another like this: $a = str_replace("cake", "c_", $a); $a = str_replace("backup", "bk_", $a); $a = ...
2
votes
1answer
104 views

how to keep count of replaced strings

I have a massive string im trying to parse as series of tokens in string form, and i found a problem: because many of the strings are alike, sometimes doing string.replace()will cause previously ...
2
votes
2answers
628 views

replace entites in rawurlencode i.e. &lt; &gt; &quot;

I have the following code <a href="snippet:add?code=<?php echo rawurlencode($snippet->snippet_content); ?>Save snippet</a> where '$snippet = &lt;a ...
2
votes
6answers
100 views

Could you tell how to replace by regular expression

Could you tell how to replace string by preg-replace (need regular expression): /user/{parent_id}/{action}/step/1 At the equivalent values of an array: array('parent_id'=>32, ...
2
votes
2answers
143 views

How to Ignore certain tags and replace texts in PHP

I have a variable like $content = "Lorem Ipsum is simply <b>dummy text of the printing</b> and typesetting industry. Lorem Ipsum has been the industry's <i>standard dummy ...
2
votes
4answers
724 views

PHP template class with variables?

I want to make developing on my new projects easier, and I wanted a bare bones very simple template engine solution. I looked around on the net and everything is either too bloated, or makes me ...

1 2 3 4 5 7