Unmatch when Slash( / ) is followed by Underscore( _ ) or hyphen( – )
I am constructing an ID, in Javascript, which doesn’t allow special character and uppercase letter. We could have / _ – in the ID, but the it should not begin with these. hello correct helloWorld incorrect 123hello correct hello/world correct -hello incorrect _hello incorrect $hello incorrect /hello incorrect hello$ incorrect hello_world correct hello-world correct hello-world/apple… Read More Unmatch when Slash( / ) is followed by Underscore( _ ) or hyphen( – )