Using Regex, I want to match any URL that includes the /it-jobs/
but must have something after the final /
.
To be a match the URL must have /it-jobs/
+ characters after the trailing /
otherwise it should not match. Please refer to below example.
Example: www.website.com/it-jobs/
- is not a match
www.website.com/it-jobs/java-developer
- is a match
www.website.com/it-jobs/php
- is a match
www.website.com/it-jobs/angular-developer
- is a match