Regex to match exact listen path (say /test)
/{?:test$}
/{?:\btest\b$}
Regex to use two values in listen path ( say /valueOne and /valueTwo)
/{?:valueOne|valueTwo}/
Regex to match exact listen path (say /test)
/{?:test$}
/{?:\btest\b$}
Regex to use two values in listen path ( say /valueOne and /valueTwo)
/{?:valueOne|valueTwo}/
Comments
0 comments
Please sign in to leave a comment.