We Recommend

Mastering Regular Expressions Mastering Regular Expressions
As this book shows, a command of regular expressions is an invaluable skill. Regular expressions allow you to code complex and subtle text processing that you never imagined could be automated. Regular expressions can save you time and aggravation. They can be used to craft elegant solutions to a wide range of problems. Once you've mastered regular expressions, they'll become an invaluable part of your toolkit. You will wonder how you ever got by without them.


Posted By

raws on 11/17/06


Tagged

phpbb ExpressionEngine


Versions (?)


Who likes this?

2 people have marked this snippet as a favorite

nicolaspar
copyleft


phpBB to EE - Intra-forum links transformation


Published in: Regular Expression 


Tested in TextWrangler 2.1.3 on 17 Nov. 2006, and works beautifully :O


  1. (?#
  2. phpBB to ExpressionEngine Conversion
  3. ------------------------------------
  4. Intra-forum links replacement regex
  5.  
  6. ORIGINAL:
  7. ---------
  8. http://www.holybork.com/viewtopic.php?p=1129&amphighlight=#1129
  9.  
  10. TRANSFORMED:
  11. ------------
  12. http://www.holybork.com/forums/viewthread/1129/
  13. )
  14.  
  15. (?# MATCH )
  16. (.*)viewtopic\.php\?p=(\d+)(.*)
  17.  
  18. (?# REPLACE )
  19. \1forums/viewthread/\2/
  20.  
  21. (?# 17 Nov. 2006 - Raws )

Report this snippet 

Comments

RSS Icon Subscribe to comments
Posted By: nicolaspar on January 19, 2007

Excelent!, your code apply in a .htaccess

You need to login to post a comment.