Hey,
Say you have the following in files:
<script src="../../Public/Javascript/jquery-1.4.1.js" type="text/javascript"></script>
<script src="../../Public/Javascript/jquery.easing-sooper.js" type="text/javascript"></script>
<script src="../../Public/Javascript/jquery.easing.min.js" type="text/javascript"></script>
I'm looking for a regex to find the First line (not minified and doesn't contain the word sooper). I would be using this in Visual Studio as an FYI.
Sorry, I need to be more specific. I would be using this in a Visual Studio find, as in control + shift + F, then click the use regular expressions for the find, to find in the project where I have javascript files that are referenced that are not minified. I need the exception b/c some are ok to not be minified.
I'm looking for the lines|matches that:
-have .js somewhere in them
-but not .min.js
-AND Not the word sooper
Thanks again!
I would greatly appreciate it!