felodiaz Posted October 29, 2007 Share Posted October 29, 2007 I can get to figure it our something I know should be really easy to deal with, but I dont remeber some of the str functions... I need a function that will take out part of a string but not substr... And not knowing the position. Lets explain it with an example, lets say i have this: Blah 1 blah 2 blah 3 [sTART] Blah 456 [END] jjjjjjjaaaaaa Ok... Im figuring out to do a function that the last text i have is for example $content. And i can output an string like $output to be "Blah 456"... So i want to take the text between [sTART] and [END]. Thanks a lot to all for the help i know you are going to give me. Quote Link to comment https://forums.phpfreaks.com/topic/75269-easy-string-thing/ Share on other sites More sharing options...
firelior Posted October 29, 2007 Share Posted October 29, 2007 you can use preg match. Learn about it..but here is a code: preg_match("/[sTART](.*?)[END]/",$content,$match); Quote Link to comment https://forums.phpfreaks.com/topic/75269-easy-string-thing/#findComment-380697 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.