表CSV変換 (ひょうCSVへんかん) *

カテゴリ

plugin_csv > CSV操作

環境

wnako,cnako

種類

関数

引数

Aを

説明

二次元配列AをCSV形式に変換して返す

🔍貯蔵庫を検索 / 🔍マニュアルを検索 / 👓ソース

表CSV変換』の詳しい解説 *

   v3.6.11

参考 *

return false\n}\n\n\/\/ ace_editors instance\n\/** @type {{ editor: any, editorMarkers: any }[]} *\/\nconst ace_editors = {}\nconst use_textarea_b = {}\n\nfunction ace_editor_init(pid, use_textarea) {\n use_textarea_b[pid] = use_textarea\n if (navigator.nako3 === undefined) {\n setTimeout(function() { ace_editor_init(pid, use_textarea) }, 200);\n return\n }\n if (use_textarea) {\n var edit = document.getElementById(\'nako3_code_\' + pid)\n edit.style.display = \'block\'\n console.log(\'[#nako3 plugin] textarea mode\')\n } else {\n const ace = document.getElementById(\'ace_editor\' + pid)\n ace.style.display = \'block\'\n ace_editors[pid] = navigator.nako3.setupEditor(\'ace_editor\' + pid)\n \/\/ console.log(\'[#nako3 plugin] ace_editor mode\')\n }\n}\n\n\/\/ post\nfunction post_button_init(pid, can_save) {\n const post_span = document.getElementById(\'post_span_\' + pid);\n post_span.style.visibility = can_save ? \"visible\" : \"hidden\"; \/\/ for post\n}\nfunction nako3_post_submit(pid) {\n \/\/ use_textarea ?\n if (!use_textarea_b[pid]) {\n \/\/ copy ace_editor to textarea\n const edit = ace_editors[pid].editor;\n const textarea = document.getElementById(\'nako3_code_\' + pid);\n textarea.value = edit.getValue();\n }\n \/\/ submit\n document.getElementById(\'nako3codeform_\' + pid).submit()\n}\n\n\/\/ \u4eee\u4fdd\u5b58\u306e\u305f\u3081\u306e\u51e6\u7406\nfunction get_kari_hozon_key(pid) {\n return \'nako3edit_kari_src_\' + pid;\n}\n<\/script>\n\n\n\n\n