0
votes
1answer
33 views

Weird behavior in regular expression replacement

I'm doing a regular expression for a linking system, and the syntax looks like this: <a href=":login">Login</a> This tells the system that this link should be converted to JS or an HTML ...
1
vote
2answers
46 views

Replacing occurences of a specific word if not proceeded by another specific word?

I have some text like: *open* blah blah blah blah blah *close* blah blah *open* blah blah *close* blah blah *close* I was wondering how would I remove/replace any occurrences of *close* which are ...
0
votes
4answers
34 views

Regular Expression for replacing newlines

Just want to know why my regular expression is giving me 2 br tags instead of 1 when the string contains \n\r? I'm trying to replace \n, \r, \r\n and \n\r with the following: $string="testing \n\r ...
0
votes
2answers
36 views

how to replace date format in a dynamic string variable?

my variable is a dynamic string variable in this string i have some date value and looks like $var = 'bd','100','10-05-2013','20-05-2013','alise'; but i want to change this date format like $var = ...
0
votes
1answer
27 views

Grep all text following a specific format

Hi ALl i have a list that look something like so curl -x X3SzDf34 curl -x X3SzDf34r curl -a X3SzDf43 curl -x X3SzDfsdf curl -a X3SzDfsvx basically looking to grep all lines that have curl -X and to ...
0
votes
2answers
19 views

How to replace QUOTES like forums with php?

I know I should probably be using preg_replace but I'm not the best with regex. Could someone help me with the code for replacing [QUOTE=user]quote here[/QUOTE] to: ...
0
votes
1answer
35 views

Optional regex match is being ignored

I have a bit of regex in PHP that isn't doing what I want it to. What I want: [segment type="segment_name"]more text here[/segment] to be changed to: [segmentclass='segment_name segment']more ...
0
votes
4answers
33 views

preg_replace appending character to match

I'm looking for a way to convert a numeric into a string that could be used to represent a version. Let's say we have $foo = 123 I'd like to be able to convert this into $foo = "1.2.3" So far ...
-3
votes
1answer
43 views

Ignore <script>-Tag while replace Keywords with Links [duplicate]

I Want to Replace Keywords in a Text with a link. So I created this preg_replace: $include = ...
0
votes
1answer
35 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?
1
vote
1answer
38 views

Delete text form textfile with php

I try to delete some texte in a text file. The texte file is like that : #MESSAGE :0 * ^(To|cc).*fd.* |/usr/bin/vacation fd #monfiltreperso :0 * ^From.*martial@gironde.com Maildir/.repertorymoi :0 ...
0
votes
2answers
36 views

preg_replace all links in file_get_contents not containing a word [duplicate]

I'm reading a page into a variable and I would like to disable all links that do not contain the word "remedy" in the address. The code I have so far grabs all the links including ones with "remedy". ...
3
votes
1answer
45 views

Reverse preg_replace

I have regex like this: ^page/(?P<id>\d+)-(?P<slug>[^\.]+)\.html$ and an array: $args = array( 'id' => 5, 'slug' => 'my-first-article' ); I would like to have function: ...
0
votes
3answers
49 views

How to get content from nested mark using PHP with regular expression?

Here is the string: $text = "aaaaaaaa[[Image:1939.jpg||thumb|right|200px|[[1939]], [[Mr. X]] is [[here]].]]bbb"; I wanna get this: Image:1939.jpg||thumb|right|200px|[[1939]],[[Mr. X]] is [[here]]. ...
5
votes
4answers
36 views

preg_match acting very strange

I am using preg_match() to extract pieces of text from a variable, and let's say the variable looks like this: [htmlcode]This is supposed to be displayed[/htmlcode] middle text [htmlcode]This is ...
1
vote
1answer
25 views

Replace tabs or multiple spaces

I just wanted to check this code was valid for what I am trying to do (replaces tab(s) or multiple spaces with one space. preg_replace('/\t+|\s{2,}/', ' ', $street); However what if it found a tab ...
0
votes
1answer
33 views

Finding position of last digit in string

I'm trying to format some number plates - I need to find the last digit in a string and add a space after it, e.g. T4MAX = T4 MAX T53TES = T53 TES I'm assuming I'll have to use preg_replace - I've ...
2
votes
1answer
116 views

Regular expression to replace words in web pages

I was looking for a regular expression (php) to find/replace some words in a web page. But, it cant replace words between all html tags, only between: italic <i>, bold <b> and plain text. ...
0
votes
1answer
51 views

PHP Regex URL parsing issues preg_replace

I have a custom markup parsing function that has been working very well for many years. I recently discovered a bug that I hadn't noticed before and I haven't been able to fix it. If anyone can help ...
0
votes
2answers
25 views

How to replace “match_expression\n” with preg_replace or other?

I wonder how to replace those matches [/img]\n (\n : new line) by [/img], in a string. I tried each of the following $string = preg_replace("#[/img]\n#","[/img]",$string); $string = ...
0
votes
3answers
50 views

preg_replace returns unexpected results to $1

<?php $data='123 [test=abc]cba[/test] 321'; $test = preg_replace("(\[test=(.+?)\](.+?)\[\/test\])is","$1",$data); echo $test; ?> I expect the above code to return abc but instead of returning ...
1
vote
2answers
61 views

preg_replace is not removing content between custom tags

The content on which I want to perform regex is this: [NON-CA] This is for Non CA <b> In a New Line </b> [/NON-CA] [CA] This is for CA [/CA] I want to remove the content on the basis ...
0
votes
3answers
55 views

PHP Regex Pattern to Match “@user” Anywhere [closed]

This regex pattern stuff is confusing to me. I have a username like @tom stored in a variable. I would like to set up a pattern to match @tom when it's found anywhere in the string; beginning, middle ...
0
votes
3answers
48 views

preg_replace is not replacing the content of string

I have a string like this <script>||| [CA]this is my content<br> ABC**&&PPPP[/CA]Just Some Random Text<span>[CA]this is my content2<br> 123**''&&PPPP[/CA] i ...
9
votes
6answers
155 views

Replace every character with an element

This is what I have $str = 'Just a <span class="green">little</span> -text åäö width 123#'; This is what I need Results in spans and spaces, might be newlines as well. $result = ...
0
votes
4answers
78 views

strip out <p> tags which is inside another tag

I need to strip out <p> tags which is inside a pre tag, How can i do this in php? My code will be like this: <pre class="brush:php;"> <p>Guna</p><p>Sekar</p> ...
-2
votes
1answer
57 views

preg_replace strings “data[key1][key2][]” in “[data][key1][key2]”

I want to replace or extend the following sample strings not arrays in php "data" in "[data]" "data[key]" in "[data][key]" "data[key1][key2]" in "[data][key1][key2]" "data[key1][key2][]" in ...
1
vote
1answer
36 views

preg_match Part of a url

I have a link that looks like this http://site.com/numbers_and_letters/This_is_what-I-need_to-retrieve.html I basically need to retrieve this part: This_is_what-I-need_to-retrieve And also replace ...
1
vote
2answers
55 views

preg_replace using pattern as index of replacement data array

I would like to know if there is a simple way to use the matched pattern in a preg_replace as an index for the replacement value array. e.g. preg_replace("/\{[a-z_]*\}/i", "{$data_array[\1]}", ...
0
votes
1answer
79 views

PHP preg_replace exclude &lt; and &gt;

I need to change this code: $output = preg_replace("#&lt;a ([^&gt;]*)&gt;([^&lt;]*)&lt;\/a&gt;#", "<a href=\"$1\">$2</a>", $output) to make from &lt;a ...
0
votes
2answers
83 views

preg_replace returns empty string (without matching)

I want to use preg_replace on a string, but although the string does not match, I get an empty string as return string. PHP Code: $sql = "k1 LIKE 'n' OR k2 LIKE 'n' OR k3 LIKE 'n' OR k4 LIKE 'n' ...
0
votes
2answers
19 views

Preg_replace syntax not working when used with whitespaces

i am trying to use preg_replace on contents received from a file using file_get_contents preg_replace("/\/\/data(.*?)\/\/enddata/i",$string,$contents); $string = 'data new '; // contents here with ...
2
votes
2answers
37 views

preg_replace to turn underscore to space except when underscore is part of a given pattern

I'm trying to take a string such as: $search = "Bob Loblaw + Mark Hamill RT45_part12 foo_092344" and remove all non alphanumeric characters except when the underscore is located in RT45_part12. ...
-2
votes
0answers
34 views

php escape symbols for link [closed]

I want something like stackoverflow that when I post new question the link of it escape symbols and replace the spaces to -. e.g : title : file.replace('abcd') also replaces 'abcde' How do I only ...
0
votes
2answers
32 views

Regular expression, replace between “<” and “>”, php

I'm very weak in regular expressions. I simply need to replace < and > (and anything between) with new content. This is what I have: $key = preg_replace('/<.*>/', '', $key); My ...
1
vote
2answers
59 views

Take what's between [code][/code] and apply changes

I want to make code box, where I can apply changes. If I have this: $var= "word"; inside these [code] HERE [/code], I will change $var into red color and "word" into green. I used preg_replace to ...
0
votes
2answers
68 views

Regular expressions in PHP behave strangely

So, I've got some kind of database and I use regular expressions to process all those lines. But the problem is there may be no or not single '@' symbol in email section. I decided to put @ before ...
0
votes
4answers
44 views

Replace (ss) with something else

I have a problem in PHP with replacing (ss) in a string. $string = 'I want a new (ss) now!'; $newString = preg_replace('\(ss\)', 'car', $string); I am expecting $newString to become: I want a ...
1
vote
1answer
45 views

how to delete consecutive chars and avoid some string

Hi I'm wondering how I can remove all repeated chars in a url but keept the http:// and query string intact. example url: https://domain.com:800///some/here..jpg currently have this code wich ...
4
votes
1answer
46 views

Regex - preg_replace php - Understading

I have the following code that I'm trying to understand what exactly this code does, but after several time I didn't figure out... OBS: This code was made a long time ago and was working for treat ...
1
vote
2answers
96 views

Regular expression - preg_match Latin and Greek characters [duplicate]

I am trying to create a regular expression for any given string. Goal: remove ALL characters which are not "latin" or "lowercase greek" or "numbers" . What I have done so far: [^a-z0-9] This ...
-1
votes
1answer
35 views

preg_match variable php [closed]

I want to match some string in the variable. If there is "i" or "an" in end of $var, return true. $__var = preg_replace('/^(i|an)$/','',$var); But it returns 0 (false). Example: $var = ...
0
votes
2answers
37 views

PHP preg_replace surrounded by pipes?

I have just come across a regular expression in the WordPress core which intrigues me... I have found regular expressions like this before and wondered about them, but they have worked so I have not ...
0
votes
1answer
48 views

Strip single ended tags from string (img, hr, etc)

function stripSingleEndedTag($content, $allowed = array()){ (array)$allowed; $singletags = ...
0
votes
1answer
44 views

Use a regular expression to find url with different number params PHP

I'm in the process of moving content from one CMS to a different CMS. The url structure is different so I would like to replace some of the urls using php. The old url is href="book-online?cid=123" ...
0
votes
1answer
60 views

A better way to handle a simple markup to html converter in php

Yes I know there are already classes/packages/systems out there that do this for me, but I've got some requirements and design choices that preclude me from using them. So given that I've decided to ...
0
votes
2answers
84 views

php regex - remove \r\n\r\n at the very beginning AND at the very end in a string

If exists, I need to remove \r\n\r\n at the very beginning and/or at the very end of string. My issue is I couldn't achieve my aim with codes below. //if exists, remove \r\n\r\n at the very ...
-1
votes
5answers
57 views

Preg_Replace gives error in empty value

Hello i want to use the Preg_Replace function whenever i am checking for input of user whether entered any value or not. if not gives an error massage lik 'Enter your name please' but intead of this i ...
1
vote
1answer
51 views

Removing all control and non-printing characters except newline, carriage return, tab and spacing

Forgive me, but when I look at regular expressions it's like a goat staring at a new fence. This (/\p{C}+/u) seems to work fine, but strips out newlines/carriage returns and tab: $str = " ...
0
votes
1answer
112 views

PHP REGEX - removal of excess line breaks - String Manipulation Issue

I am inputting a dirty string (lots of spaces, line-breaks and extra false spaces just before punctuation characters. my desired output is explained in the code below. It seems that I can achieve to ...

1 2 3 4 5 24