match everything between two tags in vscode using regex

Ealier i wrote an article on how to match everything between two strings or tags or text in sublime using regular expressions but now i am vscode, i need a way to do this in vscode aswell. and luckily it is damn simple some like which selects everything between that section tag, which you can […]

Match everything in between two strings using sublime text

Often when working on projects with multiple files, we may need to find everything in between two strings and replace them.   example: moving all global js files (files which will be used in all files) within comments like <!– global js –> <script src="js/jquery-1.11.1.min.js"></script> <!– Bootstrap –> <script src="js/bootstrap.min.js"></script> <!– end of global js […]