I want to check if URL is valid to match below pattern.
https://xxx.abc.com/yyy/?&p=1000/1001
How can i write the Regex to achieve?
Expected:
Starts with domain 'https://xxx.abc.com', 'xxx' could be any name of sub-domain, 'abc.com' should be fixed value.
Path /yyy could be any path, even sub-path should be allowed. https://xxx.abc.com/yyy/?&p=1000/1001
?&p=1000/1001 should be ok with '\?(\&)?p=\d+/\d+'