Regular expression matching problem

as the title
string is as follows:" http://t.d.b.123@123.c is all 1max / 12max

now find a match to the diagonal bar other than http://

.

could you tell me how to write such a rule

Mar.23,2021

str.replace(/https?:\/\/.*?\//,'').match(/\//g)

like this?


1. Take grouping 1

[^:/](\/+)

II. Look around

(?<![:/])\/+
Menu