Regex: Find all links that doesn't have one / (slash)

This regex does the job:

https://\S+/en(?!/)\S*

Explanation:

https://        # literally
\S+             # 1 or more non space characters
/en             # literally
(?!/)           # negative lookahead, make sure we haven't a slash after
\S*             # 0 or more non space characters

Demo & explanation