vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Trying to do replacements (https://vborg.vbsupport.ru/showthread.php?t=60846)

dontpanic 01-28-2004 12:34 AM

Trying to do replacements
 
I'm trying to use the preg_replace command to do replacements of specific strings with the string as a URL. An example from what I am using:
PHP Code:

$post['message'] = preg_replace('/(70-292)/i''<a href="http://www.mcseworld.com/a/1932266569/" target="_blank">\\1</a>'$post['message']); 

This code would thus case the 70-292 string to be replaced with that URL.

I have two issues:

1. I cannot quite figure out how to get ONLY exact matches, no matter where they might appear in the post. I've been reading on this here: http://www.php.net/manual/en/function.preg-replace.php and here: http://www.php.net/manual/en/pcre.pattern.modifiers.php

2. I know that I will need a if/then loop to prevent the substitution from being made if the string is already encased in <a> or [URL] tags, but I am not sure how to go about that either.

I am currently using this in the functions_showthread.php file for vB 3.0.0 RC3, so no actual changes are being made to the data as the subs are done on the display end of things.

Thanks in advance!

g-force2k2 01-28-2004 01:18 PM

dontpanic,

Could you perhaps use either str_replace or substr_replace functions instead to get the effect you're looking for?

I haven't really done much with preg_replace so I can't really give you much assistance there.

Cheers,
g-force2k2

dontpanic 01-28-2004 01:35 PM

g-force2k2,

This code below does have the same effect, but my real problem is figuring out how to prevent it from replacing in any <a> or [URL] instances.
PHP Code:

$post['message'] = str_replace("70-292""<a href=\"http://www.mcseworld.com/a/1932266569/\" target=\"_blank\">70-292</a>"$post['message']); 

I am looking to perform the replacement conditionally, only if the string is not already linked.

You've got me looking in another direction though... :)

NTLDR 01-28-2004 01:43 PM

Note that str_replace() is case sensitive, so for the words for example it will only match exact case and you can't tell it to replace abc and not <a href="x">abc</a>

dontpanic 01-28-2004 01:47 PM

NTLDR,

Good point. I am having the same problems with str_replace() as I did with preg_replace() when we talked last. I have to figure out a way to prevent the replacement from occuring in existing <a> and [URL] instances as the replacement will break them and some times create interesting output as well.

Thanks both for your inputs. :)

g-force2k2 01-28-2004 01:48 PM

dontpanic couldn't you nest your replacement codes in characters that are illegal in urls, characters that the urlencode function changes.

for example:

Code:

{70-292}
I don't think that the brackets would be used or can be used in urls, but I could be wrong.

That way you don't have to worry about parsing through the urls or a hrefs.

Also take a look at the functions_bbcodeparse.php might give you some ideas.

Regards,
g-force2k2

NTLDR 01-28-2004 01:52 PM

Quote:

Originally Posted by dontpanic
NTLDR,

Good point. I am having the same problems with str_replace() as I did with preg_replace() when we talked last. I have to figure out a way to prevent the replacement from occuring in existing <a> and [URL] instances as the replacement will break them and some times create interesting output as well.

Its posible to tell it to look for one thing but not another, its allong the lines of:

PHP Code:

$var preg_replace('/(tofind)^(<a href="\S">tofind</a>)/i''replacement'$var); 

Now I'm certain the above, won't work , however its along those lines ;)

dontpanic 01-28-2004 01:56 PM

Quote:

Originally Posted by g-force2k2
dontpanic couldn't you nest your replacement codes in characters that are illegal in urls, characters that the urlencode function changes.

for example:

Code:

{70-292}
I don't think that the brackets would be used or can be used in urls, but I could be wrong.

That way you don't have to worry about parsing through the urls or a hrefs.

Also take a look at the functions_bbcodeparse.php might give you some ideas.

Regards,
g-force2k2

g-force2k2, yes this does appear to work quite well actually. It's a bit awkward from the point of view that you'd have to remember to encase it using {}, but it certainly does work. :)

dontpanic 01-28-2004 01:57 PM

Quote:

Originally Posted by NTLDR
Its posible to tell it to look for one thing but not another, its allong the lines of:

PHP Code:

$var preg_replace('/(tofind)^(<a href="\S">tofind</a>/i''replacement'$var); 

Now I'm certain the above, won't work , however its along those lines ;)

NTLDR, I will have to dig into this more. Question about your syntax though. Just to avoid any confusion, can you explain where I'd put the string to search for and the string that is to be placed in the output?

g-force2k2 01-28-2004 01:59 PM

Quote:

Originally Posted by dontpanic
NTLDR, I will have to dig into this more. Question about your syntax though. Just to avoid any confusion, can you explain where I'd put the string to search for and the string that is to be placed in the output?

I'm pretty interested in the preg_replace syntax too, doesn't help to learn more.

Regards,
g-force2k2


All times are GMT. The time now is 04:45 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01083 seconds
  • Memory Usage 1,748KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (4)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete