I need a regular expression that validates these types of urls:
/test/ABC-DEF/2016-11-14+2016-11-29/1-0-0
/test/GHI-JKL/2016-11-14/MNJ-HJK/2016-11-29/1-0-0
I could not get an expression to validate this character "/"
I need a regular expression that validates these types of urls:
/test/ABC-DEF/2016-11-14+2016-11-29/1-0-0
/test/GHI-JKL/2016-11-14/MNJ-HJK/2016-11-29/1-0-0
I could not get an expression to validate this character "/"
You can try the following regular expressions that I already check and match with your texts
This is the second pattern:
This is the pattern where I join both:
As you can see there are both texts and I check that the regular expression passes. I hope you solve with this. Greetings. If you need me to explain better the regular expressions I used, let me know. In the first instance, verify that it solves your problem.