Welcome Guest, Not a member yet? Register   Sign In
pre_replace not sure what the correct expression is
#11

[eluser]sophistry[/eluser]
this might help. i renamed the word_censor function (as it was posted in the linked thread) to regex_mill()

i believe that this demonstrates almost perfectly what you are looking for:
Code:
$s = 'this is a <a href="string">string</a> with text/texts and HTML anchor and img tags (img tag here: <img src="">) mixed in. this is a string without a tag.';
$lookfor = array('(\s)(string)(\s)', 'texts?', 'HTML anchor', '[^<](img)');
$replacements = array('$2<a href="tags/$3">$3</a>$4','<a href="tags/$1">$1</a>','<a href="tags/$1">$1</a>','<a href="tags/$2">$2</a>');

$out = regex_mill($s, $lookfor, $replacements, 'i');
print_r(htmlentities($out));

to understand and use this regex_mill you are going to have to learn some regex to "tune" what the patterns find and what they are replaced with, but this should get you going with the basics.

happy birthday!


Messages In This Thread
pre_replace not sure what the correct expression is - by El Forum - 09-21-2009, 06:25 AM
pre_replace not sure what the correct expression is - by El Forum - 09-21-2009, 07:19 AM
pre_replace not sure what the correct expression is - by El Forum - 09-21-2009, 07:50 AM
pre_replace not sure what the correct expression is - by El Forum - 09-21-2009, 08:10 AM
pre_replace not sure what the correct expression is - by El Forum - 09-21-2009, 08:20 AM
pre_replace not sure what the correct expression is - by El Forum - 09-21-2009, 08:42 AM
pre_replace not sure what the correct expression is - by El Forum - 09-21-2009, 09:16 AM
pre_replace not sure what the correct expression is - by El Forum - 09-21-2009, 09:39 AM
pre_replace not sure what the correct expression is - by El Forum - 09-21-2009, 09:43 AM
pre_replace not sure what the correct expression is - by El Forum - 09-21-2009, 10:17 AM
pre_replace not sure what the correct expression is - by El Forum - 09-21-2009, 11:13 AM
pre_replace not sure what the correct expression is - by El Forum - 09-22-2009, 02:26 AM
pre_replace not sure what the correct expression is - by El Forum - 09-22-2009, 03:13 AM
pre_replace not sure what the correct expression is - by El Forum - 09-22-2009, 04:50 AM
pre_replace not sure what the correct expression is - by El Forum - 09-22-2009, 06:15 AM
pre_replace not sure what the correct expression is - by El Forum - 09-22-2009, 06:59 AM



Theme © iAndrew 2016 - Forum software by © MyBB