私は PHP を使っていますが、<<< 構文 (heredoc と nowdoc) を思い出したので、heredoc という名前にします。
Function.prototype.heredoc = function() {
//関数のコメントを使用して、エスケープせずに文字列を保存します。
var _str = this.toString(),
s_pos = _str.indexOf("/*") 2,
e_pos = _str.lastIndexOf("*/")
return (s_pos< 0 || e_pos<0) ? " : _str.substring(s_pos, e_pos)
関数 fn(){
/*
;
ユーザー名 |
:20px;">@name
zf123456 |
*/
}
var str_table = fn.heredoc();
console.log(str_table);声明:この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。