Gulsaes Posted November 13, 2008 Share Posted November 13, 2008 I'm new to this hole expression stuff so I really need some help Data i'm looking at is 1306/1412 (DDHH/DDHH) what i currently have is ^([0-3]{1})([0-9]{1})([0-2]{1})([0-9]{1})([0-3]{1})([0-9]{1})([0-2]{1})([0-9]{1})$ but i have no clue how to insert a check for the / any help would be greatly appreciated Quote Link to comment Share on other sites More sharing options...
ddrudik Posted November 13, 2008 Share Posted November 13, 2008 Validating with your rules: ^~[0-3]\d[0-2]\d/[0-3]\d[0-2]\d~$ or: ^/[0-3]\d[0-2]\d\/[0-3]\d[0-2]\d/$ For a discussion of delimiters: http://us.php.net/manual/en/intro.pcre.php Quote Link to comment Share on other sites More sharing options...
Gulsaes Posted November 13, 2008 Author Share Posted November 13, 2008 Awsome thank you so Much !!!! 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.