I have a regular expression to check if a given string does not contain "blog" prefix:
^(?!blog)
Unfortunately, I can't use look-ahead syntax in Go Lang :(
How to rewrite that reg expression to remove ?!
look-ahead syntax?
I have a regular expression to check if a given string does not contain "blog" prefix:
^(?!blog)
Unfortunately, I can't use look-ahead syntax in Go Lang :(
How to rewrite that reg expression to remove ?!
look-ahead syntax?