Learning regexp but currently I'm a bit stucked with such pattern..
I need to match my string inside url string, example:
If url contains string '/example/regex'
it should return true.
/REGEXFOR:'/example/regex'/.test('http://test.com/example/regex/new') // => true
/REGEXFOR:'/example/regex'/.test('http://test.com/example/regex/new/boo') // => false
Thanks!