If the delimiter is _anything other than one fixed character_ , then `cut` is the _wrong_ tool.
Use `awk` instead.
Consider this test file which has three fields:
$ cat file
one///two/2//two///three
To print the second field and only the second field:
$ awk -F/// '{print $2}' file
two/2//two