ShoeLace1291 Posted January 7, 2010 Share Posted January 7, 2010 CodeIgniter allows regular expressions to be used in the uri routing feature. For those unfamiliar with their syntax(which I'm not sure is the same since I've never ever used regex), the standard a-z is ([a-z]+) I need a regex that finds whether or not a string contains a-z in lowercase, A-Z in uppercase, and hyphens(-). I've tried the following but it doesn't seem to work. ([a-z]+)([A-Z]+)([0-9]+)([-]) Quote Link to comment Share on other sites More sharing options...
salathe Posted January 7, 2010 Share Posted January 7, 2010 Give the following a go: ([a-zA-Z0-9-]+) Your post didn't say you want numbers too, but your try did... so my regular expression allows numbers. 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.