I have regex something like below:
f04((?!z).)*
Requirements :
1.)f04
matches the characters f04 literally (case sensitive)
2.) Assert that the Regex below does not match, z
matches the character z
literally (case sensitive)
3.) .
matches any character
What can be the other possible way to write this particular regexp with the same requirements as above?