Mr Candu Posted July 28, 2009 Share Posted July 28, 2009 Hi, The following preg_replace reg ex grabs all characters between the box tags: /\[box](.+?)\[\/box\]/ Eg: [box]Characters Grabed[/box] I'm am terrible with regular expressions and have failed in getting the code to grab all characters including line breaks and carriage returns. I think I should be using the \s character, but I can't figure out where to stick it? Any help is much appreciated! Thanks, Mat. Quote Link to comment Share on other sites More sharing options...
.josh Posted July 28, 2009 Share Posted July 28, 2009 \s is shorthand character class for spaces, tabs and some other whitespace character. What you want is the s modifier, which goes after the closing delimiter: /\[box](.+?)\[\/box\]/s Quote Link to comment Share on other sites More sharing options...
Mr Candu Posted July 28, 2009 Author Share Posted July 28, 2009 \s is shorthand character class for spaces, tabs and some other whitespace character. What you want is the s modifier, which goes after the closing delimiter: /\[box](.+?)\[\/box\]/s Thanks very much that works perfectly - Time to buy myself a good reg ex tutorial book! Quote Link to comment Share on other sites More sharing options...
.josh Posted July 28, 2009 Share Posted July 28, 2009 http://www.phpfreaks.com/forums/index.php/topic,105245.0.html One mentioned in that thread is by far (by a loooong shot) the most definitive and thorough book out there. If you are serious about buying a book, don't bother getting any other one. Quote Link to comment 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.