Remove All Comments
from Notepad++
Remove all between
brackets http://stackoverflow.com/questions/11679753/notepad-regular-expression-remove-all-text-between-curly-brackets
Remove Blank lines http://stackoverflow.com/questions/3866034/removing-empty-lines-in-notepad
const getHostnameFromRegex = (url) => {
// run against regex
const matches = url.match(/^https?\:\/\/([^\/?#]+)(?:[\/?#]|$)/i);
// extract hostname (will be null if no match is found)
return matches && matches[1];
}
Ravi Tuvar – IntelliMedia Networks
Software Developer
Cell: (+91) 73837-94530
Email: ravituvar@yahoo.com
0 comments:
Post a Comment