Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 276 Bytes

File metadata and controls

13 lines (9 loc) · 276 Bytes

HTML 주석들을 찾아보세요.

문자열에서 모든 HTML 주석들을 찾아보세요.

let regexp = /your regexp/g;

let str = `... <!-- My -- comment
 test --> ..  <!----> .. 
`;

alert( str.match(regexp) ); // '<!-- My -- comment \n test -->', '<!---->'