preg_replace() is a PHP function that performs string replacement using regular expressions.
-1
votes
2answers
26 views
How to strip/delete all spaces **except between words** in a string in php?
I saved the values to mysql and I saw spaces like that.
INSERT INTO `names` VALUES (7, 'James Bond ');
I tried to make it:
INSERT INTO `names` VALUES (7, 'James Bond');
I know make it ...
0
votes
3answers
91 views
interesting Regular Expression
Hi very interesting Regex Expression, i tried a lot of time,but some difficulties in it.
Regex rule:
user can use following characters all small([a-z]), all capital([A-Z]), numbers([0-9]) ...
3
votes
1answer
45 views
Convert nested text to strings
I'm at the moment using PHP but I suppose there are other coding languages that would handle this problem better. If you have any suggestions on other coding languages that might work better, please ...
0
votes
1answer
21 views
PHP Convert eregi() string to preg_match or preg_replace
please can someone help me with convert this string from eregi() to preg_match or preg_replace? Thank you very much!
$eregicheck = ...
1
vote
4answers
52 views
Regular expressions and preg_replace in PHP
I'm using preg_replace() and I need some help. I've been trying to do this for some time and it's time to face facts: I am really bad with regular expressions. I'm not even sure what can and can't be ...
0
votes
1answer
26 views
Replacing dumb quotes for smart quotes with preg_replace
I'm trying to swap dumb quotes for their smart equivalent. So I want to turn Jane said 'How do we do this?' 'I don't know' replied Sam. into Jane said ‘How do we do this?’ ‘I don’t know’ replied Sam. ...
1
vote
3answers
31 views
Substituting Words in a Body of Text with User Input via Multidimensional Arrays
I have two sets of data stored in multidimensional arrays. One stores regular expressions which will be used to find whole words within a larger body of text:
Array
(
[red] => Array
(
...
0
votes
1answer
49 views
Converting askerisks * to <strong> in php [closed]
I have the following problem:
$str = 'This is a *random* text, with some *bold* markup';
$bold_str = preg_replace('/\*(.*?)\*/','<strong>\\1</strong>',$str);
echo $bold_str
Now still ...
0
votes
4answers
27 views
How can I write this php preg-replace lines shortly?
I am gonna use it for a language alphabet. I wanna write these lines shortly...
That is too long.. Is there any way to write it shortly?
<?php
...
0
votes
2answers
27 views
Bash script with regex find/replace to vertically-align assignment operators in file
I have a collection of (jade template) files with properties listed like this:
a.btn(data-ng-class = "{true:'black', false:'blue'}[viewModel.currentDictionaryUid == '<%= full.uid %>']", href = ...
0
votes
2answers
22 views
Regular expression, that will be cut fragment of the cyrillic text with cyrillic keyword(case insensitive) and bold it [closed]
I have cyrillic text and some keyword(or part of it). I need to show 5 words before keyword, then full keyword in bold tag, and then 5 words. For example:
Full text: "Далеко-далеко за словесными ...
0
votes
3answers
41 views
preg_replace() help to covert {$variable} to php echo variable statment
I am working on small template class. I need help in converting {$variable} written in template file to be converted to
Like :
<html>
<body>
<p> Hey Welcome {$username} ...
0
votes
1answer
60 views
Regex - How to replace a string, without losing a part of string
I have the following code.
<a href="/29486389/Author_-_Name_of_Song.mp3/" class="popover-with-html hidden-phone">Andra - Inevitabil va fi bine.mp3</a>
How can I replace this string, ...
0
votes
1answer
14 views
PHP: str_pad and backreference
How do I use str_pad with a backreference? The way I'm using it, it reads the characters between the single quotes as characters rather than the backreferenced string. Escaping the single quotes ...
0
votes
1answer
9 views
Replace first match of preg_match?
I have a permalink like this:
example.com/cyclone/2013/06/05/introduction/
This post belongs to both categories 'cyclone' and 'weather' but 'cyclone' is taking over in this permalink.
I need to ...
-1
votes
0answers
20 views
Making my own bbcode security
im made a simple bbcode in py page, im using preg_replace:
public function bbcode($stuff){
// convert [url=URL]link_title[/url]
$pattern[0] = '/\[url=(.*?)\](.*?)\[\/url\]/i';
$replace[0] ...
-4
votes
1answer
32 views
Replace [[sometext]] or [[sometext (sometext) ]] with [[ |originaltext]] - PHP [closed]
I want to Replace all patterns like
[[sometext]] // or
[[sometext (sometext) ]] // with
[[ |originaltext]]
From a string using PHP
2
votes
2answers
22 views
preg_replace not replacing underscore
I want to allow only alpha numeric characters and spaces, so I use the following;
$name = preg_replace('/[^a-zA-z0-9 ]/', '', $str);
However, that is allowing underscores "_" which I don't want. ...
1
vote
1answer
26 views
Regex with cumulative effect
I have a regex that replaces numbers and whitespace with a hyphen.
/[^\s\d-]/
This works well, but there is a chance here of having multiple hyphens next to each other, which I don't want.
If the ...
0
votes
2answers
35 views
preg_replace youtube iframe
I've been trying to understand regex for years to no avail!
I have a system (let's say it's a forum for clarity) where users can post text etc and they can post youtube and soundcloud embed code. I ...
2
votes
3answers
31 views
Regexp for preg_replace in PHP
I have strings like this (some examples):
F7998FM3213/02F
J442554NM/05
K439459845/34D
I need to use PHP with preg_replace and regular expressions to delete all non-numeric characters in any ...
1
vote
1answer
53 views
cleaning contents inside of html tags
I am trying to write a preg_replace that will clean all tag properties of the allowed tags, and all tags that do not exist in the allowed list.
Basic example- this:
<p style="some styling ...
0
votes
0answers
26 views
Wordpress: How to add_filter to a special div of the_content
I'm trying to add a filter to only a special div of my wordpress content
sure my plugin code now will effect to all the post content, but what i need is to apply it only for a special div ...
1
vote
1answer
20 views
removal of a date in the text using regex or alternative small scripts
$string="18 Mar 2013 <b>...</b> And this is exactly what is sparking the resurgence of long-tail <br> <b>keyword</b> targeting in <b>SEO</b>. I've observed ...
0
votes
1answer
25 views
Using preg_replace in text, foreach loop issue
I'm trying to change specific words in a text.
Just "gallery" bbcode's will echo the gallery codes.
Everthing is ok, but foreach loop returns just one row.
here is my function
function ...
1
vote
2answers
40 views
preg_replace json string match same character beginning/end
Ok so what I have is a JSON string which can contain 1 or many elements below I've put an example of the sting but this is only an example the real string is much more complicated. This one ...
2
votes
2answers
42 views
PHP - preg_match/preg_replace problems
I'm a little confused with preg_match and preg_replace. I have a very long content string (from a blog), and I want to find, separate and replace all [caption] tags. Possible tags can be:
...
0
votes
3answers
48 views
How to stop replacing at first specific character
I want to hide specific tags, till the closing tag in some content, but I can't get it to work properly.
This is what I have:
$fnc_patterns = "/\[display=[^!]+\]?.*\[\/display=[^!]+\]/";
$str ...
0
votes
1answer
32 views
PHP preg_replace Character that is not a word character (\W) except:“-”,“.”, etc
I've searched for quite a while on this one,
I want to filter a string in PHP to allow only word characters and certain other characters such as "-",".", etc..
preg_replace(/\W+/,'',$str)
For all ...
3
votes
3answers
61 views
preg_replace all <img> parameters
I've upgraded a WYSIWYG editor from an old version to the newest. There is a difference to how image dimensions are saved. The old version of the editor used to add width and height parameters to the ...
2
votes
1answer
32 views
how to add target blank to anchor tag to open in new window using preg_match or preg_replace
How to add target blank to anchor tag to open in new window using preg_match or preg_replace?
$contentss = ...
0
votes
2answers
21 views
Getting forward slash before the URL Using the preg_replace
Getting forward slash before the URL Using the preg_replace
$contentss = file_get_contents("http://www.ncbi.nlm.nih.gov/pubmed?LinkName=pubmed_pubmed&from_uid=18032633" );
preg_match('/<div ...
1
vote
4answers
51 views
jquery .replace(/./g, “”) do not work for me but others
I found this snippet somewhere and it works like a charm:
var n = parseInt(e.find("span.favNum").text().replace(/./g, "")) + 1;
If I do it in a similar way it doesn't work anymore.
I do the ...
-2
votes
0answers
19 views
ereg to preg - help me please [duplicate]
How to convert ereg to preg
I tried to do it but I can not
Can someone convert the code, from ereg to preg
thank you
function read_xml_response($content) {
$Code = 0;
$CodeDescription = ...
-5
votes
1answer
34 views
change URL in from anchor tag using preg_replace [closed]
I want to change the Url of the below given anchor tag
<a href="pubmed/2562222"></a>
I want to replace inside url with like
<a ...
-6
votes
0answers
31 views
I want to change the link hyperlink of below given link using preg_replace [closed]
I want to change the hyperlink of below given link using preg_replace
<a href="somelink">Some link</a>
2
votes
1answer
48 views
Replacing Heading (<h1>, <h2> …) Tags with <p> Tags and Classes
I wish to replace tags from a WYSIWYG editor to .
At the moment I am using the following code to achieve this.
$content = preg_replace('/<h1(.*?)<\/h1>/si', '<p ...
0
votes
1answer
26 views
Extract specific data from SimplePie get_content object
I have an RSS feed from which I'm trying to extract data though SimplePie (in WordPress).
I have to extract the content tag. It works with <?php echo $item->get_content(); ?>. It throws out ...
0
votes
1answer
30 views
How to use php preg_replace or preg_match strip <p> that wrap <pre
i have this html
<p>some text.</p>
<p><pre>
<?php sample();
$var = 'aaa';
?>
</pre></p>
<p>describe</p>
<p>
<pre>
...
1
vote
1answer
31 views
Regex: replace all with '' except lowercase
I have a string, e.g. /test/ and I'd like to mantain only the lowercase.
How can I do it with preg_replace?
$string = '/test/';
$new_string = preg_replace('?????', '', $string);
$new_string = 'test';
...
1
vote
3answers
43 views
replace www.anylinks.com or anylinks.com to http://www.anylinks.com within the html content
I need help with replacing the links to the format 'http://www.link.com'
ex: from
$output_string = 'fix me <a href="www.link.com">link</a> or fix me <a ...
0
votes
1answer
57 views
I want to replace a string using preg_replace
I've got a string which I want to replace by preg_replace. Since I'm relatively new to preg_replace, when I see how I can do this one, it will help me a lot to replace all other strings in my project.
...
0
votes
1answer
12 views
quick ereg_replace to preg_replace [duplicate]
I am learning PHP functions and have this problem:
I need to change the function *ereg_replace*
$row[$j] = ereg_replace("\n", "\\n", $row[$j]);
to *preg_replace*
how to do it ?
Thank you
0
votes
2answers
30 views
Regex to convert already formatted date to different format
I have $date = $run['at'];, which gives me 2013-06-03T16:52:24Z. How can I manipolate it to get for example "d M Y, H:i" ?
0
votes
2answers
40 views
using urldecode inside preg_replace with php [duplicate]
Is there a way to use urldecode inside preg_replace?
I tried something like this:
$body = ...
-5
votes
1answer
18 views
How to modify a preg replace with preserv dots [closed]
I got this snippet, (the extension is not in the string $filename, its already removed):
$file_name = preg_replace('~[^\\pL0-9_]+~u', '-', $file_name);
I need to preserv the dots = . in the ...
0
votes
1answer
28 views
wordpress search on multiple tables by default search query
at least spending days in an MySQL nightmare hope someone can help me. I work on a tagging plugin for WP.
My problem sounds so easy: to keep the wordpress database clean and performant I decided to ...
0
votes
1answer
26 views
Beginning regex
I have absolutely no idea about regex at all. I am trying to perform email validation in a PHP signup script (to check if a valid email has been entered). I have got a script from the internet but I ...
1
vote
1answer
35 views
how to replace special characters only at the beginning and end
i'm currently using this code to replace special characters and i was wondering if there's a way to replace only the first and last character and leave the ones in the middle.
$name = ...
1
vote
1answer
28 views
preg_replace with :alnum: and UTF-8
I discovered that using the u modifier is helping sometimes when working with UTF-8 strings but on my Linux server it replaces the umlaut with - instead leaving it like on my Windows server.
...



