Jump to content

Is there a function that will find the text between two strings?


aeroswat

Recommended Posts

I'm not exactly sure how to go about this but I'm trying to handle some bbcode for a url. So the php is getting some text like this

 

[link=www.website.com]Website[/link]

 

And I am using str_replace to replace [link= with <a href=' but how do I replace the closing ] with '>?

Link to comment
Share on other sites

This type of problem is best solved with regular expressions because you're looking for patterns that include variables, and regex can capture the variable stuff (in this case the url) making it easy to output your html version.  Take a look at preg_replace() instead.

Link to comment
Share on other sites

This type of problem is best solved with regular expressions because you're looking for patterns that include variables, and regex can capture the variable stuff (in this case the url) making it easy to output your html version.  Take a look at preg_replace() instead.

 

I thought I might have to use reg exp's. That sucks because I don't understand them lol. Guess i'll have to go back to learning them :P Thanks. Any tips for a good tutorial site on them?

Link to comment
Share on other sites

A valid href needs to have the http:// in front of it.  You will need to check their link for it at the beginning and if they don't have it you can add it in.

 

Yes sir. I decided to make a check for the http and have an example of it in the prompt box. Thanks for the help.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.