I need to find if the following words come more than one time in the document through Notepad++ regex search:
/resources/common.js
Given that these words could come between other words, like:
<script src="/resources/common.js" type="text/javascript"></script>
So the search shows the results just if these words "/resources/common.js" are present more than one time in that file.
I need this to find in a large folder with thousands of files, just to know which files have the repeated sentence.