Tagged Questions
The preg-replace-callback tag has no wiki summary.
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
3answers
75 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
209 views
preg_replace with multiple patterns replacements at once
I have few substitutions to apply on my $subject but I don't want to allow the output from old substitutions #(1 .. i-1) to be a match for the current substitution #i.
$subject1 = preg_replace($pat0, ...
3
votes
2answers
1k views
Is there a way to pass another parameter in the preg_replace_callback callback function?
mmmh guys, i really hope my english is good enaught to explain what i need.
Lets take this example (that is just an example!) of code:
class Something(){
public function Lower($string){
...
2
votes
4answers
112 views
Preg_replace or preg_replace_callback?
I have links on some pages that use an old system such as:
<a href='/app/?query=stuff_is_here'>This is a link</a>
They need to be converted to the new system which is like:
<a ...
2
votes
2answers
597 views
regex for PHP preg_replace_callback
Regular expressions is just not my thing. :(
I have a string that may contain multiple sub strings such as:
[var1="111" var2="222" var3="222" var4="444"]
I basically need to replace each ...
1
vote
2answers
73 views
Replacing end div tags using preg_replace_callback function
I am trying to develop a PHP script that replaces all divs in an HTML string with paragraphs except those which have attributes (e.g. <div id="1">). The first thing my script currently does is ...
1
vote
1answer
58 views
php preg_replace word to link, but word can't be already as part of anchor
I have some HTML content:
<p>
Nunc nulla tincidunt metus sed eros auctor sagittis. Sed malesuada, mi et ornare
molestie, urna dui
<a href="http://google.com/" title="condimentum ...
1
vote
2answers
34 views
how to replace the hashtagged text in sequence using preg_replace(_callback)
the target text is something like:
Lorem ipsum dolor #sit# amet, consectetur #adipisicing# elit, sed do #eiusmod# tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis ...
1
vote
3answers
92 views
php - Clean user input using preg_replace_callback and ord()?
I have a forum style text box and I would like to sanitize the user input to stop potential xss and code insertion. I have seen htmlentities used, but then others have said that &,#,%,: characters ...
1
vote
0answers
76 views
Is there a PHP port of Java's Matcher class?
I'm porting YUI's CssCompressor, which has several Matcher uses, to PHP. For the sake of long-term maintenance I'd like to keep the PHP port as similar to the Java original as possible ...
1
vote
1answer
36 views
preg_replace_callback not working, function not working
i am using something like the following but the function replace_callback isnt executed at all
$body2 = preg_replace_callback("/\{(.*)\}/isUe","replace_callback",$body);
the string $body looks like ...
1
vote
2answers
101 views
Regular expressions - Reference the first match in a search
I don't quite know how to describe my problem in a short title so I am sorry if the title for this question is a bit mis-leading.
But I really don't know what the thing I am looking for is called or ...
1
vote
2answers
204 views
Using preg_replace_callback() to extract all images from a string of HTML
Tricky preg_replace_callback function here - I am admittedly not great at PRCE expressions.
I am trying to extract all img src values from a string of HTML, save the img src values to an array, and ...
1
vote
2answers
461 views
use preg match and replace to replace li tags within ol tags
Here is what i got:
<ol>
<li></li>
<li></li>
</ol>
<ul>
<li></li>
<li></li>
</ul>
if ...
1
vote
1answer
40 views
Getting In A Bit Over My Head With Preg
I have a string containing html and "tags" in the form [realtor:name] or [office:phone]. I have a (CakePHP-generated) array of database data, such that the realtor's name can be found in ...
1
vote
3answers
602 views
preg_replace: remove tags
I have a lot of option tags. I would like to remove the tags and get only the values.
This is the code:
<?php
$result = preg_replace('/<option value=\"\d+\" ...
1
vote
2answers
44 views
Inserting multiple links into text, ignoring matches that happen to be inserted
The site I'm working on has a database table filled with glossary terms. I am building a function that will take some HTML and replace the first instances of the glossary terms with tooltip links.
I ...
1
vote
3answers
57 views
Can I somehow know which replacement is taking place from within a callback of preg_replace_callback?
I'm using preg_replace_callback to substitute particular tokens within the string. But apart from actual token I need to know as well whether that token was first, second or third in a subject string. ...
0
votes
3answers
33 views
Why does this preg_replace_callback not fire?
When I run this script on the second content fragment below, it passes (I get the "inside callback" echo).
However, when I run it on the first content fragment, even thought I get the first echo, I ...
0
votes
1answer
47 views
Second parameter in preg_replace_callback()
I have a problem with the function preg_replace_callback() in PHP. I want to call a function which requires two parameters.
private function parse_variable_array($a, $b)
{
return $a * $b;
}
On ...
0
votes
1answer
30 views
Using preg_replace_callback to identify and manipulate latex code
I have latex + html code somewhere in the following form:
...some text1.... \[latex-code1\]....some text2....\[latex-code2\]....etc
Firstly I want to obtain the latex codes in an array codes[] to ...
0
votes
1answer
42 views
PHP preg_replace_callback correct escaping to handle hash symbol ('#')
I'm doing some work with a Twitter feed and want to turn any hashtags into a clicable URL.
A hashtag is a hash symbol ('#') immediately followed by a word acting as a search tag - and contains no ...
0
votes
3answers
41 views
Accessing global state in PHP using preg_replace_callback() callbacks
I've got a piece of text, for example:
XYZ id dui vel erat bibendum hendrerit aliquet ac lorem. Integer ABC
turpis, facilisis sit amet ultricies non, tempor LMNOP est. Aliquam
sit amet sapien ...
0
votes
2answers
52 views
Using preg_replace_callback with external class
I have a question for you!
Normally, if you call a callback function within an OOP context you have to use array(&$this, 'callback_function')
That's what I figured out.
But now I want to call a ...
0
votes
1answer
80 views
preg_replace & preg_replace_callback security concerns
Ok, I know this is a bad practice, but part of the code was existing, and I have to extend it to run custom functions with one argument.
So, our pages are stored in the db, and when they are ...
0
votes
1answer
27 views
500 error preg_replace_callback when using function ($match) use ($video){}
Works on my localhost running php 5.3.4
Does not work on my VPS hostgator account running 5.3.6
The problem here seems to be the "use" keyword
Code Below
<?php
$video = $this->Video;
...
0
votes
2answers
95 views
PHP preg_replace_callback with multiple parameters
I want to do a regex replace, but I don't want to do it every time it's found. I think the preg_replace_callback is what I need to use, and just do my random check in there but I can't figure out how ...
0
votes
1answer
52 views
php preg_replace_call : extract specific values for later reinsertion
For the sake of brevity...
I want to take items out of a string, put them into a separate array, replace the values extracted from the string with ID'd tokens, parse the string, then put the extracted ...
0
votes
1answer
39 views
changing the replace value in preg_replace_callback
function replaceContent($matches = array()){
if ($matches[1] == "nlist"){
// do stuff
return "replace value";
} elseif ($matches[1] == "alist"){
// do stuff
...
0
votes
1answer
89 views
Regex : ignore HTML Tags with preg_replace_callback
im trying to grab all text between the HTML Tags (if there) ,, and put a function on it ..
i mean.. my code now is
$code = preg_replace_callback('/((\s*\')\s*(.?)\s(\')/',
...
0
votes
1answer
56 views
Need help understanding create_function() and regex
After allot of searching around SO and other forums also stumbling over various php function documentation, I tried to edit a function that I found on here(converts URLs to clickable links) so it will ...
0
votes
1answer
60 views
Preg Callback Issue
Great Mates...
I need your help.. please let me know why this code is not getting in to the callback function...
wppp_content_hook('<p><a ...
0
votes
1answer
48 views
Run Callback on everything that's not inside square brackets (BBCodes)
Just stitched up a little callback to highlight all my BBCodes.
Took my ages because regex are still a huge pain in the butt to me.
function highlight($str) {
return ...
0
votes
3answers
346 views
php preg_replace question mark (?) - not working
I have a string $name = "name1?name2?name3?name4"; I want to modify this variable as $name2 = "name1/name2/name3/name4"; using php preg_replace. How can I do this??
Thanks in advance...:)
...
0
votes
2answers
332 views
PHP Preg_Replace data between tags, respecting other tags within the document
There is probably a very simple answer to this, but I want to be as detailed as possible so that you do not need me to clarify.
I am trying to collect the contents of every
...
0
votes
1answer
78 views
problem with closure in preg_replace_callback
This script check every line of some text for "FIRST" and "LAST" words, and trying to replace them by entries in $temp_names array.
$temp_names = array('FIRST' => array('John','Jack'),'LAST' ...
0
votes
0answers
138 views
0
votes
2answers
192 views
Geshi with Markdown
Im trying to get GeSHi to work with markdown.
A simple use for Geshi is as follows:
$geshi = new GeSHi($message, 'c');
print $geshi->parse_code();
The above code takes in the whole of message ...
0
votes
4answers
136 views
Case insensitive preg_replace_callback
In the function below, I want to match the keyword case insensitive (should match "Blue Yoga Mats" and "blue yoga mats")...
However, it currently only matches if the keyword is the same case.
...
0
votes
0answers
98 views
Can this [HTML tokenization/automatic template generation] be broken?
Consider the below HTML string
<p>This is a paragraph tag</p> <font>This is a font tag</font> <div>This is a div tag</div> <span>This is a span ...
0
votes
1answer
153 views
Replacing values using preg_replace
I have a Joomla plugin (not important in this context), which is designed to take an input with a load of numbers (within a paragraph of text) and replace them with a series of s.
My problem is that ...
0
votes
1answer
104 views
RegEx, preg_replace_callback Question PHP
This is what I've got for for my RegEx, I was wondering if this is the best way.
I want to be able to find something similar regardless of the spacing between Identifiers and not be case sensitive. ...
0
votes
1answer
444 views
PHP regex extract/replace values from xml-like tags via named (sub)groups
Trying to create a simple text-translator in PHP.
It shoult match something like:
Bla bla {translator id="TEST" language="de"/}
The language can be optional
Blabla <translator id="TEST"/>
...
0
votes
2answers
86 views
Regex: faulty syntax used with preg_replace_callback?
I have borrowed code from this link http://stackoverflow.com/questions/959017/php-regex-templating-find-all-occurrences-of-var to implement a means of applying values to template fiies. This uses the ...
0
votes
1answer
223 views
preg_replace_callback - do twice
Yo, i'm trying to do this script working, but it doesn't work. How do i do it twice, the preg_replace_callback with two different functions. Thanks!
function prepend_proxy($matches) {
$url = ...
0
votes
3answers
386 views
preg_replace_callback() memory issue
i'm having a memory issue while testing a find/replace function.
Say the search subject is:
$subject = "I wrote an article in the A+ magazine.
It'\s very long and full of words.
I want to replace ...
0
votes
3answers
291 views
what does this preg_replace_callback do in PHP? and how do I stop it leaking memory?
I've got a section of code on a b2evo PHP site that does the following:
$content = preg_replace_callback(
'/[\x80-\xff]/',
create_function( '$j', 'return "&#".ord($j[0]).";";' ),
...
-2
votes
1answer
56 views
Regex fix for preg_replace_callback function
STRING :
$string = '{$string#anything#something this string will output default |ucfirst|strtoupper}';
PREG_REPLACE_CALLBACK CODE(PHP) :
$string = preg_replace_callback('/\{\$?([^# ]+)\#?([^ ]+)? ...