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]+)([-]) Link to comment https://forums.phpfreaks.com/topic/187558-regex-and-codeigniter-routes/ 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. Link to comment https://forums.phpfreaks.com/topic/187558-regex-and-codeigniter-routes/#findComment-990262 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.