CodeIgniter Forums
RegEx and URI Routing - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: RegEx and URI Routing (/showthread.php?tid=26146)



RegEx and URI Routing - El Forum - 01-07-2010

[eluser]ShoeLace1291[/eluser]
Ok, so I'm trying to use regular expressions with the URI routing. My url's containing strings that were generated by the url title function of the url helper. So in other words if the word Xbox 360 is entered it's converted to Xbox-360. What I need is a regex pattern that will match all upper and lowercase letters as well as hyphens.


RegEx and URI Routing - El Forum - 01-07-2010

[eluser]Sean Gates[/eluser]
Try:

/[a-zA-Z\-]+/

Let me know if that works.

Also, if you're using a Mac go grab RegExhibit. A great little app for developing regular expressions.