Home >Web Front-end >JS Tutorial >Regular expression to remove comment statements in javascript_javascript tips

Regular expression to remove comment statements in javascript_javascript tips

WBOY
WBOYOriginal
2016-05-16 16:44:561972browse

Copy code The code is as follows:

function removeJsComments(code)

return code.replace(/(?:^|n|r)s*/*[sS]*?*/s*(?:r|n|$)/g, 'n').replace(/(? :^|n|r)s*//.*(?:r|n|$)/g, 'n');
}

Multi-line comments:

Copy code The code is as follows:
/(?:^|n| r)s*/*[sS]*?*/s*(?:r|n|$)/g

Single line comment:

Copy code The code is as follows:
/(?:^|n|r )s*//.*(?:r|n|$)/g
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn