{"id":2135,"date":"2023-09-30T00:09:48","date_gmt":"2023-09-30T00:09:48","guid":{"rendered":"https:\/\/exceladvisor.org\/id\/file-teks\/"},"modified":"2023-12-06T06:13:27","modified_gmt":"2023-12-06T06:13:27","slug":"file-teks","status":"publish","type":"page","link":"https:\/\/exceladvisor.org\/id\/file-teks\/","title":{"rendered":"Bagaimana cara membuat dan menulis ke file teks menggunakan vba?"},"content":{"rendered":"<div class=\"excel-before-content\" id=\"excel-491563882\"><script type=\"text\/javascript\">\r\n\tatOptions = {\r\n\t\t'key' : 'c1158f160081d6540a8409e6925dab94',\r\n\t\t'format' : 'iframe',\r\n\t\t'height' : 250,\r\n\t\t'width' : 300,\r\n\t\t'params' : {}\r\n\t};\r\n<\/script>\r\n<script type=\"text\/javascript\" src=\"\/\/www.highperformanceformat.com\/c1158f160081d6540a8409e6925dab94\/invoke.js\"><\/script><\/div> <p>Untuk membuat teks menggunakan kode VBA, Anda harus menggunakan metode CreateTextFile. Metode ini memungkinkan Anda mengatur lokasi di mana Anda ingin membuatnya. Metode ini memiliki sintaks di mana Anda dapat menentukan apakah Anda ingin menimpa file di lokasi dan menentukan apakah file tersebut dibuat sebagai file Unicode atau ASCII.<\/p><h2 class=\"wp-block-heading\"> Buat file teks dengan VBA<\/h2><p> Gunakan langkah-langkah berikut:<\/p><ol><li> Pertama, Anda perlu menggunakan objek FileSystemObject atau Folder untuk digunakan dengan metode ini. <br><img loading=\"lazy\" decoding=\"async\" title=\"1-buat-file-teks-menggunakan-vba\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-creer-un-fichier-texte-en-utilisant-vba.png\" sizes=\"auto, \" srcset=\"\" alt=\"create-a-text-fie-using-vba\" width=\"522\" height=\"305\"><\/li><li> Setelah itu, Anda perlu membuat objek lain menggunakan metode CreateTextFile. <br><img loading=\"lazy\" decoding=\"async\" title=\"2-metode membuat file teks\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/2-Creer-une-methode-de-fichier-texte.png\" sizes=\"auto, \" srcset=\"\" alt=\"create-text-file-method\" width=\"779\" height=\"321\"><\/li><li> Dalam kode ini, kami menggunakan TRUE untuk menimpa jika sudah ada file dengan nama yang sama di folder tersebut.<\/li><li> Terakhir, saat Anda menjalankan makro ini, buat file teks baru di folder sebagai berikut.<\/li><\/ol><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub create_text_file() 'object to use as folder Dim fld As Object Set fld = CreateObject(\"Scripting.FileSystemObject\") 'using create text file method Dim myFile As Object Set myFile = fld.CreateTextFile(\"C:UsersDellDesktopmyFoldermyTextFile.txt\", True) End Sub<\/code><\/pre><h2 class=\"wp-block-heading\"> Sintaks metode CreateTextFile<\/h2><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">CreateTextFile (filename, [ overwrite, [ unicode ]])<\/code><\/pre><ul><li> <strong>nama file:<\/strong> Jalur dan nama file yang ingin Anda buat.<\/li><li> <strong>overwrite:<\/strong> boolean untuk menentukan apakah Anda ingin menimpa file (jika sudah ada) (opsional).<\/li><li> <strong>unicode:<\/strong> boolean untuk menentukan apakah file dibuat sebagai file Unicode atau ASCII (opsional).<\/li><\/ul><h2 class=\"wp-block-heading\"> Menulis ke file teks menggunakan VBA<\/h2><p> Anda dapat menggunakan dua pernyataan untuk menulis data ke file teks:<\/p><ol><li> <strong data-rich-text-format-boundary=\"true\">Tulis:<\/strong> Dengan pernyataan ini Anda dapat menulis data ke file teks di mana Anda akan memiliki koma di antara nilai, tanda kutip di sekitar string, dan tanda # di sekitar tanggal. <br><img loading=\"lazy\" decoding=\"async\" title=\"Pernyataan 3-tulis\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/3-ecrire-une-declaration.png\" sizes=\"auto, \" srcset=\"\" alt=\"write-statement\" width=\"496\" height=\"291\"><\/li><li> <strong data-rich-text-format-boundary=\"true\">Cetak:<\/strong> Dengan pernyataan ini Anda dapat menulis data ke file teks dengan tampilan persis seperti yang Anda miliki di spreadsheet Excel. <br><img loading=\"lazy\" decoding=\"async\" title=\"Pernyataan dalam 4 karakter\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/4-declaration-dimpression.png\" sizes=\"auto, \" srcset=\"\" alt=\"print-statement\" width=\"650\" height=\"344\"><\/li><\/ol><p> Sekarang kita akan melihat contoh kedua pernyataan dan memahami cara menulis kode lengkap untuk menulis ke file teks. Namun sebelum itu, Anda perlu memahami <strong>beberapa terminologi<\/strong> untuk menulis kode sesuai keinginan Anda.<\/p><ul><li> <strong>Untuk keluaran:<\/strong> Anda dapat menggunakan perintah ini ketika Anda ingin menulis data atau mengubah data dalam file teks.<\/li><li> <strong>Sebagai masukan:<\/strong> dengan perintah ini Anda dapat mengekstrak data dari sebuah teks, tetapi Anda tidak akan dapat mengubah dan menambahkan data ke dalam file.<\/li><li> <strong>Untuk menambahkan:<\/strong> Perintah ini membantu Anda menambahkan data baru di bagian bawah file teks.<\/li><li> <strong>FreeFile:<\/strong> Anda dapat menggunakan ini untuk mengatur nomor file yang tidak digunakan untuk file teks yang ingin Anda gunakan sehingga Anda dapat merujuknya.<\/li><\/ul><p> Sekarang mari kita menulis kode untuk memasukkan data ke dalam file teks.<\/p><ol><li> Pertama, Anda perlu mendeklarasikan variabel yang akan digunakan dalam kode. <br><img loading=\"lazy\" decoding=\"async\" title=\"5-deklarasikan-variabel\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/5-declarer-des-variables.png\" sizes=\"auto, \" srcset=\"\" alt=\"declare-variables\" width=\"381\" height=\"337\"><\/li><li> Setelah itu, Anda perlu menentukan rentang yang perlu Anda tulis ke file teks. Dan gunakan jumlah sel dalam rentang tersebut sebagai penghitung perulangan dengan mengaturnya ke variabel. <br><img loading=\"lazy\" decoding=\"async\" title=\"6-tentukan-kisarannya\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/6-definir-la-gamme.png\" sizes=\"auto, \" srcset=\"\" alt=\"define-the-range\" width=\"416\" height=\"114\"><\/li><li> Selanjutnya, Anda perlu mengatur alamat file teks tempat Anda ingin menambahkan data. <br><img loading=\"lazy\" decoding=\"async\" title=\"7-set-alamat-file-teks\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/7-definir-ladresse-du-fichier-texte.png\" sizes=\"auto, \" srcset=\"\" alt=\"define-the-address-of-the-text-file\" width=\"575\" height=\"99\"><\/li><li> Dari sana, Anda perlu mendeklarasikan perintah &#8220;FreeFile&#8221; ke variabel untuk mendapatkan nomor file. <br><img loading=\"lazy\" decoding=\"async\" title=\"8-perintah-file-gratis\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/8-commande-de-fichier-libre.png\" sizes=\"auto, \" srcset=\"\" alt=\"freefile-command\" width=\"452\" height=\"80\"><\/li><li> Sekarang Anda perlu membuat menggunakan perintah \u201cOutput\u201d karena Anda perlu menambahkan data ke file. <br><img loading=\"lazy\" decoding=\"async\" title=\"9 kontrol keluaran\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/9-sortie-de-commande.png\" sizes=\"auto, \" srcset=\"\" alt=\"output-command\" width=\"580\" height=\"80\"><\/li><li> Terakhir, Anda perlu menggunakan loop \u201cUntuk Berikutnya\u201d untuk mendapatkan nilai rentang satu per satu dan menambahkannya ke file. <br><img loading=\"lazy\" decoding=\"async\" title=\"10-untuk-loop-berikutnya-untuk-mendapatkan-nilai\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/10-pour-la-prochaine-boucle-pour-obtenir-des-valeurs.png\" sizes=\"auto, \" srcset=\"\" alt=\"for-next-loop-to-get-values\" width=\"436\" height=\"201\"><\/li><li> Selain itu, Anda perlu menggunakan perintah tutup untuk menutup file teks setelah data ditambahkan ke dalamnya. <br><img loading=\"lazy\" decoding=\"async\" title=\"Perintah 11-penutup\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/11-commande-de-fermeture.png\" sizes=\"auto, \" srcset=\"\" alt=\"close-command\" width=\"549\" height=\"86\"><\/li><li> Pada akhirnya, saat Anda menjalankan makro ini, makro ini menambahkan data dari rentang A1:A13 ke file teks yang Anda simpan di jalur yang Anda sebutkan. <br><img loading=\"lazy\" decoding=\"async\" title=\"12-jalankan-makro\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/12-executer-la-macro.png\" sizes=\"auto, \" srcset=\"\" alt=\"run-the-macro\" width=\"464\" height=\"404\"><\/li><\/ol><p class=\"qt-tip\"> <strong>Catatan:<\/strong> Pastikan untuk mengubah jalur file teks dari kode sesuai dengan jalur yang Anda miliki di sistem Anda.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Option Explicit Sub data_to_text_file() 'variables that you need to use in the code Dim TextFile As Integer Dim iCol As Integer Dim myRange As Range Dim cVal As Range Dim i As Integer Dim myFile As String 'define the range that you want to write Set myRange = Range(\"A1:A13\") iCol = myRange.Count 'path to the text file <strong>(MAKE SURE TO CHANGE IT)<\/strong> myFile = \"C:UsersDellDesktopNewFoldertextfile.txt\" 'define FreeFile to the variable file number TextFile = FreeFile 'using append command to add text to the end of the file Open myFile For Output As TextFile 'loop to add data to the text file For i = 1 To iCol Print #TextFile, Cells(i, 1), Print #TextFile, Cells(i, 2) Next i 'close command to close the text file after adding data Close #TextFile End Sub<\/code><\/pre><div class=\"gb-container gb-container-4db6181c gb-container-mt\"> <a class=\"gb-button gb-button-c5897111 gb-button-text gb-button-mt-button\" href=\"https:\/\/exceladvisor.org\/id\/vba\/\">Apa itu VBA<\/a><h2 class=\"gb-headline gb-headline-665e5f6b gb-headline-text gb-headline-mt-heading\"> Tutorial terkait <\/h2><div class=\"gb-grid-wrapper gb-grid-wrapper-a20baf7c gb-grid-wrapper-mt-grid\"><div class=\"gb-grid-column gb-grid-column-65ddf67e\"><div class=\"gb-container gb-container-65ddf67e\"><ul><li> <a href=\"https:\/\/exceladvisor.org\/id\/sorot-nilai-duplikat\/\">Sorot nilai duplikat menggunakan VBA<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/id\/ekstrak-hyperlink\/\">Ekstrak alamat hyperlink (URL) VBA<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/id\/bidang-masuk\/\">Kotak masukan di VBA<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/id\/pembaruan-layar\/\">Pembaruan Layar VBA<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/id\/bilah-status-1\/\">Bilah status VBA (sembunyikan, tampilkan, dan kemajuan)<\/a> <\/li><\/ul><\/div><\/div><div class=\"gb-grid-column gb-grid-column-50067b57\"><div class=\"gb-container gb-container-50067b57\"><\/div><\/div><\/div><\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"ub_ctt_via":"","footnotes":""},"class_list":["post-2135","page","type-page","status-publish","hentry"],"featured_image_src":null,"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u25b7 Bagaimana cara membuat dan menulis ke file teks melalui VBA?<\/title>\n<meta name=\"description\" content=\"Dalam tutorial ini Anda akan belajar cara membuat file teks dan kemudian menulisnya menggunakan dua metode berbeda (mencetak dan menulis\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/exceladvisor.org\/id\/file-teks\/\" \/>\n<meta property=\"og:locale\" content=\"id_ID\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u25b7 Bagaimana cara membuat dan menulis ke file teks melalui VBA?\" \/>\n<meta property=\"og:description\" content=\"Dalam tutorial ini Anda akan belajar cara membuat file teks dan kemudian menulisnya menggunakan dua metode berbeda (mencetak dan menulis\" \/>\n<meta property=\"og:url\" content=\"https:\/\/exceladvisor.org\/id\/file-teks\/\" \/>\n<meta property=\"og:site_name\" content=\"Excel Advisor\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-06T06:13:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-creer-un-fichier-texte-en-utilisant-vba.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimasi waktu membaca\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 menit\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/exceladvisor.org\/id\/file-teks\/\",\"url\":\"https:\/\/exceladvisor.org\/id\/file-teks\/\",\"name\":\"\u25b7 Bagaimana cara membuat dan menulis ke file teks melalui VBA?\",\"isPartOf\":{\"@id\":\"https:\/\/exceladvisor.org\/id\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/exceladvisor.org\/id\/file-teks\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/exceladvisor.org\/id\/file-teks\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-creer-un-fichier-texte-en-utilisant-vba.png\",\"datePublished\":\"2023-09-30T00:09:48+00:00\",\"dateModified\":\"2023-12-06T06:13:27+00:00\",\"description\":\"Dalam tutorial ini Anda akan belajar cara membuat file teks dan kemudian menulisnya menggunakan dua metode berbeda (mencetak dan menulis\",\"breadcrumb\":{\"@id\":\"https:\/\/exceladvisor.org\/id\/file-teks\/#breadcrumb\"},\"inLanguage\":\"id\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/exceladvisor.org\/id\/file-teks\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"id\",\"@id\":\"https:\/\/exceladvisor.org\/id\/file-teks\/#primaryimage\",\"url\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-creer-un-fichier-texte-en-utilisant-vba.png\",\"contentUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-creer-un-fichier-texte-en-utilisant-vba.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/exceladvisor.org\/id\/file-teks\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Rumah\",\"item\":\"https:\/\/exceladvisor.org\/id\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Bagaimana cara membuat dan menulis ke file teks menggunakan vba?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/exceladvisor.org\/id\/#website\",\"url\":\"https:\/\/exceladvisor.org\/id\/\",\"name\":\"Excel Advisor\",\"description\":\"Panduan utama Anda untuk mendominasi data!\",\"publisher\":{\"@id\":\"https:\/\/exceladvisor.org\/id\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/exceladvisor.org\/id\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"id\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/exceladvisor.org\/id\/#organization\",\"name\":\"Excel Advisor\",\"url\":\"https:\/\/exceladvisor.org\/id\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"id\",\"@id\":\"https:\/\/exceladvisor.org\/id\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/exceladvisor.org\/id\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png\",\"contentUrl\":\"https:\/\/exceladvisor.org\/id\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png\",\"width\":105,\"height\":36,\"caption\":\"Excel Advisor\"},\"image\":{\"@id\":\"https:\/\/exceladvisor.org\/id\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u25b7 Bagaimana cara membuat dan menulis ke file teks melalui VBA?","description":"Dalam tutorial ini Anda akan belajar cara membuat file teks dan kemudian menulisnya menggunakan dua metode berbeda (mencetak dan menulis","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/exceladvisor.org\/id\/file-teks\/","og_locale":"id_ID","og_type":"article","og_title":"\u25b7 Bagaimana cara membuat dan menulis ke file teks melalui VBA?","og_description":"Dalam tutorial ini Anda akan belajar cara membuat file teks dan kemudian menulisnya menggunakan dua metode berbeda (mencetak dan menulis","og_url":"https:\/\/exceladvisor.org\/id\/file-teks\/","og_site_name":"Excel Advisor","article_modified_time":"2023-12-06T06:13:27+00:00","og_image":[{"url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-creer-un-fichier-texte-en-utilisant-vba.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Estimasi waktu membaca":"4 menit"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/exceladvisor.org\/id\/file-teks\/","url":"https:\/\/exceladvisor.org\/id\/file-teks\/","name":"\u25b7 Bagaimana cara membuat dan menulis ke file teks melalui VBA?","isPartOf":{"@id":"https:\/\/exceladvisor.org\/id\/#website"},"primaryImageOfPage":{"@id":"https:\/\/exceladvisor.org\/id\/file-teks\/#primaryimage"},"image":{"@id":"https:\/\/exceladvisor.org\/id\/file-teks\/#primaryimage"},"thumbnailUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-creer-un-fichier-texte-en-utilisant-vba.png","datePublished":"2023-09-30T00:09:48+00:00","dateModified":"2023-12-06T06:13:27+00:00","description":"Dalam tutorial ini Anda akan belajar cara membuat file teks dan kemudian menulisnya menggunakan dua metode berbeda (mencetak dan menulis","breadcrumb":{"@id":"https:\/\/exceladvisor.org\/id\/file-teks\/#breadcrumb"},"inLanguage":"id","potentialAction":[{"@type":"ReadAction","target":["https:\/\/exceladvisor.org\/id\/file-teks\/"]}]},{"@type":"ImageObject","inLanguage":"id","@id":"https:\/\/exceladvisor.org\/id\/file-teks\/#primaryimage","url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-creer-un-fichier-texte-en-utilisant-vba.png","contentUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-creer-un-fichier-texte-en-utilisant-vba.png"},{"@type":"BreadcrumbList","@id":"https:\/\/exceladvisor.org\/id\/file-teks\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Rumah","item":"https:\/\/exceladvisor.org\/id\/"},{"@type":"ListItem","position":2,"name":"Bagaimana cara membuat dan menulis ke file teks menggunakan vba?"}]},{"@type":"WebSite","@id":"https:\/\/exceladvisor.org\/id\/#website","url":"https:\/\/exceladvisor.org\/id\/","name":"Excel Advisor","description":"Panduan utama Anda untuk mendominasi data!","publisher":{"@id":"https:\/\/exceladvisor.org\/id\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/exceladvisor.org\/id\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"id"},{"@type":"Organization","@id":"https:\/\/exceladvisor.org\/id\/#organization","name":"Excel Advisor","url":"https:\/\/exceladvisor.org\/id\/","logo":{"@type":"ImageObject","inLanguage":"id","@id":"https:\/\/exceladvisor.org\/id\/#\/schema\/logo\/image\/","url":"https:\/\/exceladvisor.org\/id\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png","contentUrl":"https:\/\/exceladvisor.org\/id\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png","width":105,"height":36,"caption":"Excel Advisor"},"image":{"@id":"https:\/\/exceladvisor.org\/id\/#\/schema\/logo\/image\/"}}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/exceladvisor.org\/id\/wp-json\/wp\/v2\/pages\/2135","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/exceladvisor.org\/id\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/exceladvisor.org\/id\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/exceladvisor.org\/id\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/exceladvisor.org\/id\/wp-json\/wp\/v2\/comments?post=2135"}],"version-history":[{"count":1,"href":"https:\/\/exceladvisor.org\/id\/wp-json\/wp\/v2\/pages\/2135\/revisions"}],"predecessor-version":[{"id":2289,"href":"https:\/\/exceladvisor.org\/id\/wp-json\/wp\/v2\/pages\/2135\/revisions\/2289"}],"wp:attachment":[{"href":"https:\/\/exceladvisor.org\/id\/wp-json\/wp\/v2\/media?parent=2135"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}