I would like to create a regexp for these occurences:
works for:
*menupoint/example
and not accept this:
*menupoint/example/example
so after the menupoint teher will be maximum one /. I tried this one but not working:
%menupoint\/[^\/]+
Thanks for the helps!