L lantek Active member Jan 29, 2014 #1 Hi. I'm trying to do a regex to validate YYYY/DD/MM in the new custom BB code advanced tab. Can anyone offer any suggestions on how it should be done? Many thanks
Hi. I'm trying to do a regex to validate YYYY/DD/MM in the new custom BB code advanced tab. Can anyone offer any suggestions on how it should be done? Many thanks
cclaerhout Well-known member Jan 29, 2014 #2 One solution: Code: #^\d{4}/\d{2}/\d{2}$# Upvote 0 Downvote
L lantek Active member Jan 30, 2014 #3 cclaerhout said: One solution: Code: #^\d{4}/\d{2}/\d{2}$# Click to expand... Thanks! Upvote 0 Downvote