Tagged Questions

preg_replace() is a PHP function that performs string replacement using regular expressions.

learn more… | top users | synonyms

13
votes
7answers
8k views

remove multiple whitespaces in php

I'm getting $row['message'] from my mysql db and I need to remove all whitespaces like \n \t and so on. $row['message'] = 'This is a Text \n and so on \t Text text.'; should be formated to: ...
11
votes
6answers
4k views

Replace URLs in text with HTML links

Here is a design though: For example is I put a link such as http://example.com in textarea. How do I get PHP to detect it’s a http:// link and then print it as print "<a ...
8
votes
2answers
101 views

Sanitize sentence in php

The title may sound odd, but im kind of trying to set up this preg_replace that takes care of messy writers for a textarea. It has to: if there is an exclamation sign, there should not be another ...
7
votes
5answers
2k views

Java equivalent to PHP's preg_replace_callback

I'm in the process of moving an application from PHP to Java and there is heavy use of regular expressions in the code. I've run across something in PHP that doesn't seem to have a java equivalent: ...
6
votes
4answers
74 views

preg_replace to remove stand-alone numbers

I'm looking to replace all standalone numbers from a string where the number has no adjacent characters (including dashes), example: Test 3 string 49Test 49test9 9 Should return Test string ...
6
votes
1answer
276 views

Converting ereg expressions to preg

Since POSIX regular expressions (ereg) are deprecated since PHP 5.3.0, I'd like to know an easy way to convert the old expressions to PCRE (Perl Compatible Regular Expressions) (preg). Per example, I ...
6
votes
3answers
111 views

PHP:PCRE: How to replace repeatable char

for example I have following string: a_b__c___d____e How to preg_replace char _ to char '-', but only if part ' __...' contains more than N repeated _. I hope you understand me )) source: ...
6
votes
3answers
505 views

PHP Regular expression: exclude href anchor tags

I'm creating a simple search for my application. I'm using PHP regular expression replacement (preg_replace) to look for a search term (case insensitive) and add <strong> tags around the search ...
6
votes
3answers
191 views

Replace newlines, but keep the blank lines

I want to replace newlines (\r\n) with space, but I want to keep the blank lines. In other words, I want to replace \r\n with ' ', if \r\n is not preceded by another \r\n. For example: line 1 line 2 ...
6
votes
3answers
437 views

How can I match a Russian word using preg_replace in PHP?

How do I go about matching a Russian word in a string (also in Russian) in PHP? So for example something like this: $pattern = '/слово/'; preg_replace($pattern, $replacement, $string_in_russian) I ...
6
votes
1answer
194 views

Strange PHP UTF-8 Behaviour

I have the following test PHP code: header('Content-type: text/html; charset=utf-8'); $text = 'Développeur Web'; var_dump($text); $text = preg_replace('#[^\\pL\d]+#u', '-', $text); ...
6
votes
7answers
1k views

Regex / DOMDocument - match and replace text not in a link

I need to find and replace all text matches in a case insensitive way, unless the text is within an anchor tag - for example: <p>Match this text and replace it</p> <p>Don't <a ...
6
votes
2answers
238 views

PHP preg_replace

preg_replace("/{{(.*?)}}/e","$$1",$rcontent); Please explain the statement to me...i cant understand this
6
votes
5answers
602 views

Replace all (.) other then first occurence in PHP

Example Input = 1.1.0.1 Expected output = 1.101
5
votes
2answers
72 views

Changing function to use preg_replace() instead of ereg_replace

I have got the following function within a code base that takes a String and makes links active. I have noticed that ereg_replace() is Depreciated. How would I change this to use preg_replace? ...
5
votes
2answers
151 views

Replace only first match using preg_replace

I have a string with structure similar to: 'aba aaa cba sbd dga gad aaa cbz'. The string can be a bit differend each time as its from external source. I would like to replace only first occurence of ...
5
votes
6answers
713 views

Highlight text, except html tags

I'm using the code below to highlight some keywords in a text: $message = str_ireplace($words,'<span class="hightlighted_text">'.$words.'</span>',$message); The text may contain some ...
5
votes
3answers
274 views

Regex for spliting on all unescaped semi-colons

I'm using php's preg_split to split up a string based on semi-colons, but I need it to only split on non-escaped semi-colons. <? $str = "abc;def\\;abc;def"; $arr = preg_split("/;/", $str); ...
5
votes
8answers
2k views

How to remove diacritics from text?

I am making a swedish website, and swedish letters are å, ä, and ö. I need to make a string entered by a user to become url-safe with PHP. Basically, need to convert all characters to underscore, ...
5
votes
7answers
848 views

preg_replace Filter for Passwords

With PHP, I'd like to use a preg_replace() filter for passwords such that the only characters available for passwords are US ASCII typable, minus control codes and NULL. What's the RegEx to achieve ...
4
votes
1answer
92 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
1answer
72 views

How to remove tags from attribute of HTML tag in php?

I have a large amount of post generated with old CMS. It is in HTML markup...almost...the worse of I ever seen before. It contains such constructs: ....<IMG alt="Хит сезона - <b>Лучшие ...
4
votes
5answers
108 views

Using PHP to remove a html element from a string

I am having trouble working out how to do this, I have a string looks something like this... $text = "<p>This is some example text This is some example text This is some example ...
4
votes
5answers
123 views

Separate street name from street number

I am trying to separate street names from street numbers which have these patterns: "street 12" --- name:street , number:12 "street12" --- name:street , number:12 "street 12a" --- name:street , ...
4
votes
2answers
72 views

REGEX assistance with nested pattern?

I have the following string I need to parse: [QUOTE=Mark] [QUOTE=Jack] How are you doing Mark? [/QUOTE] Good to hear from you Jack, Im doing fine! [/QUOTE] I am basicly trying to convern ...
4
votes
5answers
143 views

preg_replace - how to match anything that's NOT \*\*

I can't seem to figure out the regular expression to match any string that's in the format **(anything that's not **)** I tried doing this in php $str = "** hello world * hello **"; $str = ...
4
votes
3answers
371 views

How to remove first part of url in PHP?

I want to remove te first part of the url in PHP. Example: http://www.domain.com/sales http://otherdomain.org/myfolder/seconddir /directory must be: /sales /myfolder/seconddir /directory Because ...
4
votes
1answer
73 views

PHP Regex display issue

I'm trying to create a field for sorting book titles which strips the leading "A, An, The" and appends it to the strong after a comma and a space. Thus "The Road" would become "Road, The" Sounds ...
4
votes
3answers
77 views

Changing/Editing tags with PHP

This is my first question here so please bear with me - I apologise if I have not posted correctly. I have managed to pull a job description from an XML file created by our database however, the ...
4
votes
6answers
122 views

PHP: regexp and specific tags stripping

I am looking for a way to strip all anchor tags also i want everything from ',' to <br> to be removed but <br> should remain thr. dirty input: Abstractor HLTH<br> Account ...
4
votes
3answers
457 views

Extract URL from string

I'm trying to find a reliable solution to extract a url from a string of characters. I have a site where users answer questions and in the source box, where they enter their source of information, I ...
4
votes
2answers
153 views

Avoiding processing special preg characters in replacement string

When using preg_replace() in PHP with strings generated at runtime, one can protect special regex characters (such as '$' or '+') in the search string by using preg_quote(). But what's the correct way ...
4
votes
1answer
131 views

PHP, Preg_replace (regex), replacing just the part of pattern in ( )?

Sorry for this basic question, but I've been looking over all the info about preg_replace I can find and I still can't figure this out.. I have a large string, like this, for example: $string= '# ...
4
votes
6answers
3k views

Convert plain text URLs into HTML hyperlinks in PHP

I have a simple commenting system where people can submit hyperlinks inside the plain text field. When I display these records back from the database and into the web page, what RegExp in PHP can I ...
4
votes
9answers
1k views

Check if a string is an email address in PHP

I am trying to do an SQL query, but I need to check somehow if the value is an email address. I need a way to check if $user is an email address, because I have user values such as this in my table. ...
4
votes
5answers
302 views

question regarding php function preg_replace

I want to dynamically remove specific tags and their content from an html file and thought of using preg_replace but can't get the syntax right. Basically it should, for example, do something like : ...
4
votes
3answers
3k views

Regex Optional Groups?

I seem to have confused myself with a preg_match regex I'm doing, so fresh eyes and help would be appreciated. My current regex is as follows: ...
4
votes
4answers
7k views

Regex to strip comments and multi-line comments and empty lines

I want to parse a file and I want to use php and regex to strip: blank or empty lines single line comments multi line comments basically I want to remove any line containing /* text */ or ...
3
votes
2answers
36 views

preg_replace, regex getting Text Parts

I have the following problem: I have a Text with the e.g. the following Format: min: 34.0 max: 79.0383 lifetime: 17% code:iweo7373333 It's not a fixed text Type, means min can also be -7.94884444 ...
3
votes
2answers
40 views

Greediness of preg_replace

echo preg_replace('/:*$/isD', ':', ':blue:'); A fairly simple PHP regex, which is designed to capture as many colons at the end of a string as possible (there may not be any at all) and replace it ...
3
votes
3answers
39 views

PHP Preg Replace replacement array

Ok so I'm trying to do something like so: preg_replace("/\{([a-zA-Z0-9_]+)\}/", $templateVariables[$1], $templateString); Now I know that is not possible like it is, however I would like to know if ...
3
votes
2answers
73 views

jQuery input filter for textarea

I adapted this solution into my script. The idea is to prevent the user from typing unauthorized characters (of course there is also a filter on the back end). $('#someinput').keyup(function() { ...
3
votes
2answers
49 views

Regular Expression to Check only 1st Match of Each Line

I have a PHP page that is reading text stored in a MYSQL database table. The text might look something like this Bob: Hi blah blah (Bob walking around) Fred Johnson: blah blah blah Bob: Something ...
3
votes
1answer
49 views

REGEX - Preg_replace search for dynamic content

I am making a system that takes all optional subjects from a education and puts it in a database. This works fine. Now I want to make sure if you choose "Finance A" you can't choose "Finance C", I'm ...
3
votes
3answers
74 views

Replacing all occurences of a specific word which are not enclosed with the words OPEN and CLOSE?

I have the following string: OPEN someone said hello CLOSE im saying hello people OPEN some said hello OPEN they said hello again CLOSE i have to go now though CLOSE hello again! I'm trying to ...
3
votes
2answers
53 views

PHP, regular expression and preg_replace, need some help

I need help with little replacing: Some text [ id ] to... Some text | id I'm new in regular expression and I just don't know, how to safely keep text inside [ ]... And I don't want to use ...
3
votes
1answer
27 views

Preg_replace error, when using different language text. (Getting rid of lines)

I have content like this `மிழர்களி வரறில் யூலை மாதம் என்பது கனத்த மாதமாக பதிவு செய்யப்பட்டுள்ளது. குறிபாக ஐந்து ஆண்ளின் யூலை கள் முக்கியமானவை. 1983ம் ஆண்டிற்கு முன்பே யூலை மாதம் தமிழர்களுடன் ...
3
votes
1answer
49 views

Consolidating duplicates with preg_replace, take into consideration dash

I have a preg_replace that finds duplicate entries and consolidates. I need to take into consideration the dash as well, but currently it does not. $id = KRS-KRS-123 preg_replace('/^(\w+)-(?=\1)/', ...
3
votes
3answers
98 views

Bizzare multibyte preg_replace issue. It is changing my data to smily faces!

Using PHP 5.3.1 on windows. I am just trying to add spaces between numbers and letters, but PHP is mangling my data! $text = "TUES:8:30AM-5:00PMTHURS:8:30AM-5:00PMSAT:8:00AM-1:00PM"; echo ...
3
votes
3answers
108 views

preg_replace \n in string

for some reason this: preg_replace("/\\n/", "<br />", $string); isn't working. The string outputs in this format: blah blah blah\nblah blah blah even after the preg replace. All I want to do ...

1 2 3 4 5 23