I would like to know a regex in order to prevent a string like
**Test
but a string like
*test, test,123,
allowed. So basically starting with 2 Asterix (*) is not allowed, everything is allowed.
I tried the following regex expression
[^(\*{2})].* [^(\*\*)].* [^(\*\*)$].* ^(?!\*\*.*)
source share