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 Link to comment https://forums.phpfreaks.com/topic/132525-help-with-regex-pattern-for-preg_match/ 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 Link to comment https://forums.phpfreaks.com/topic/132525-help-with-regex-pattern-for-preg_match/#findComment-689201 Share on other sites More sharing options...
Gulsaes Posted November 13, 2008 Author Share Posted November 13, 2008 Awsome thank you so Much !!!! Link to comment https://forums.phpfreaks.com/topic/132525-help-with-regex-pattern-for-preg_match/#findComment-689301 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.