How to write a regular expression for something that does NOT start with a given word
Let's suppose I have the following list
- January
- February
- June
- July
- October
I want a regular expression that returns all but June and July because they they start with Ju
I wrote something like this ^[^ju] but this return any starting with J or U I need something that starts with Ju Thank you for your help