how to match one or more slashes

i’ve this regex expression

\(?!.*d|s|w|D|S|W|b|[|]|^|$|.|||?|*|+|{|}|(|))

i want that when doing this: \s,
it will not match anything.

but when doing this: \m
it will match every slash () separately.

i hope that you will understand, it was a bit hard to explain.
i’ve tried word boundaries and some examples here in stackoverflow but i found nothing…