{"id":5377,"date":"2015-03-09T14:33:30","date_gmt":"2015-03-09T05:33:30","guid":{"rendered":"http:\/\/www.ka-net.org\/blog\/?p=5377"},"modified":"2015-03-09T14:33:30","modified_gmt":"2015-03-09T05:33:30","slug":"wikipedia%e3%81%ae%e6%a4%9c%e7%b4%a2%e4%ba%88%e6%b8%ac%e3%82%ad%e3%83%bc%e3%83%af%e3%83%bc%e3%83%89%e3%81%ae%e4%b8%80%e8%a6%a7%e3%82%92%e5%8f%96%e5%be%97%e3%81%99%e3%82%8bvba%e3%83%9e%e3%82%af","status":"publish","type":"post","link":"https:\/\/www.ka-net.org\/blog\/?p=5377","title":{"rendered":"Wikipedia\u306e\u691c\u7d22\u4e88\u6e2c\u30ad\u30fc\u30ef\u30fc\u30c9\u306e\u4e00\u89a7\u3092\u53d6\u5f97\u3059\u308bVBA\u30de\u30af\u30ed"},"content":{"rendered":"<p>Wikipedia\u306e\u30b5\u30fc\u30c1\u30dc\u30c3\u30af\u30b9\u306b\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u5165\u529b\u3059\u308b\u3068\u3001\u5165\u529b\u3057\u305f\u30ad\u30fc\u30ef\u30fc\u30c9\u3068\u4f3c\u3066\u3044\u308b\u4e88\u6e2c\u30ad\u30fc\u30ef\u30fc\u30c9\u304c\u30ea\u30b9\u30c8\u8868\u793a\u3055\u308c\u307e\u3059(\u3053\u3053\u3067\u306f\u3053\u306e\u6a5f\u80fd\u3092\u30aa\u30fc\u30c8\u30b3\u30f3\u30d7\u30ea\u30fc\u30c8\u3068\u547c\u3076\u3053\u3068\u306b\u3057\u307e\u3059)\u3002<\/p>\n<p><a href=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/Wikipedia_Autocomplete_01.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/Wikipedia_Autocomplete_01.jpg\" alt=\"Wikipedia_Autocomplete_01\" width=\"295\" height=\"314\" class=\"alignnone size-full wp-image-5379\" srcset=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/Wikipedia_Autocomplete_01.jpg 295w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/Wikipedia_Autocomplete_01-282x300.jpg 282w\" sizes=\"auto, (max-width: 295px) 100vw, 295px\" \/><\/a><\/p>\n<p>\u4eca\u56de\u306f\u3053\u306e\u4e88\u6e2c\u30ad\u30fc\u30ef\u30fc\u30c9\u4e00\u89a7\u3092\u914d\u5217\u3068\u3057\u3066\u53d6\u5f97\u3059\u308b\u30de\u30af\u30ed\u3092\u8003\u3048\u3066\u307f\u307e\u3057\u305f\u3002<\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">Option Explicit\r\n\r\nPublic Sub Sample()\r\n  Dim v As Variant\r\n  Dim i As Long\r\n  \r\n  Debug.Print &quot;- Wikipedia(\u65e5\u672c\u8a9e\u7248)&quot;\r\n  v = GetWikipediaAutocomplete(&quot;\u30c6\u30b9\u30c8&quot;)\r\n  If IsEmpty(v) = False Then\r\n    For i = LBound(v) To UBound(v)\r\n      Debug.Print v(i)\r\n    Next\r\n  End If\r\n  Debug.Print &quot;&quot;\r\n  \r\n  Debug.Print &quot;- Wikipedia(\u82f1\u8a9e\u7248)&quot;\r\n  v = GetWikipediaAutocomplete(&quot;abc&quot;, &quot;en&quot;)\r\n  If IsEmpty(v) = False Then\r\n    For i = LBound(v) To UBound(v)\r\n      Debug.Print v(i)\r\n    Next\r\n  End If\r\n  Debug.Print &quot;&quot;\r\n  \r\n  Debug.Print &quot;- Wikipedia(\u30de\u30b1\u30c9\u30cb\u30a2\u8a9e\u7248)&quot;\r\n  v = GetWikipediaAutocomplete(&quot;ab&quot;, &quot;mk&quot;)\r\n  If IsEmpty(v) = False Then\r\n    For i = LBound(v) To UBound(v)\r\n      Debug.Print v(i)\r\n    Next\r\n  End If\r\nEnd Sub\r\n\r\nPrivate Function GetWikipediaAutocomplete(ByVal key_word As String, _\r\n                                          Optional ByVal language As String = &quot;ja&quot;) As Variant\r\n'Wikipedia\u30aa\u30fc\u30c8\u30b3\u30f3\u30d7\u30ea\u30fc\u30c8\u304b\u3089\u30ad\u30fc\u30ef\u30fc\u30c9\u53d6\u5f97\r\n'http:\/\/www.mediawiki.org\/wiki\/API:Main_page\/ja\r\n  Dim d As Object\r\n  Dim lst As Object\r\n  Dim n As Object\r\n  Dim v As Variant\r\n  Dim url As String\r\n  Dim i As Long\r\n  \r\n  Set d = Nothing: Set lst = Nothing '\u521d\u671f\u5316\r\n  If ChkWikipediaLanguage(LCase(language)) = False Then language = &quot;ja&quot;\r\n  url = &quot;http:\/\/&quot; &amp; LCase(language) &amp; &quot;.wikipedia.org\/w\/api.php?action=opensearch&amp;format=xml&amp;search=&quot;\r\n  url = url &amp; EncodeURL(key_word)\r\n  On Error Resume Next\r\n  With CreateObject(&quot;MSXML2.XMLHTTP&quot;)\r\n    .Open &quot;GET&quot;, url, False\r\n    .setRequestHeader &quot;Content-Type&quot;, &quot;text\/xml; charset=UTF-8&quot;\r\n    .send\r\n    Select Case .Status\r\n      Case 200: Set d = .responseXML\r\n    End Select\r\n  End With\r\n  If Not d Is Nothing Then\r\n    Set lst = d.getElementsByTagName(&quot;Text&quot;)\r\n    ReDim v(lst.Length - 1): i = LBound(v)\r\n    For Each n In lst\r\n      v(i) = n.Text\r\n      i = i + 1\r\n    Next\r\n  End If\r\n  On Error GoTo 0\r\n  GetWikipediaAutocomplete = v\r\nEnd Function\r\n\r\nPrivate Function ChkWikipediaLanguage(ByVal language As String) As Boolean\r\n'Wikipedia\u306e\u5bfe\u5fdc\u8a00\u8a9e\u5224\u5b9a\r\n'http:\/\/meta.wikimedia.org\/wiki\/List_of_Wikipedias\r\n  Dim ret As Boolean\r\n  \r\n  ret = True '\u521d\u671f\u5316\r\n  Select Case LCase(language)\r\n    Case &quot;en&quot; 'English\r\n    Case &quot;sv&quot; 'Swedish\r\n    Case &quot;de&quot; 'German\r\n    Case &quot;nl&quot; 'Dutch\r\n    Case &quot;fr&quot; 'French\r\n    Case &quot;war&quot; 'Waray-Waray\r\n    Case &quot;ceb&quot; 'Cebuano\r\n    Case &quot;ru&quot; 'Russian\r\n    Case &quot;it&quot; 'Italian\r\n    Case &quot;es&quot; 'Spanish\r\n    Case &quot;vi&quot; 'Vietnamese\r\n    Case &quot;pl&quot; 'Polish\r\n    Case &quot;ja&quot; 'Japanese\r\n    Case &quot;pt&quot; 'Portuguese\r\n    Case &quot;zh&quot; 'Chinese\r\n    Case &quot;uk&quot; 'Ukrainian\r\n    Case &quot;ca&quot; 'Catalan\r\n    Case &quot;fa&quot; 'Persian\r\n    Case &quot;no&quot; 'Norwegian (Bokm?l)\r\n    Case &quot;fi&quot; 'Finnish\r\n    Case &quot;id&quot; 'Indonesian\r\n    Case &quot;ar&quot; 'Arabic\r\n    Case &quot;cs&quot; 'Czech\r\n    Case &quot;sr&quot; 'Serbian\r\n    Case &quot;ko&quot; 'Korean\r\n    Case &quot;hu&quot; 'Hungarian\r\n    Case &quot;sh&quot; 'Serbo-Croatian\r\n    Case &quot;ms&quot; 'Malay\r\n    Case &quot;ro&quot; 'Romanian\r\n    Case &quot;tr&quot; 'Turkish\r\n    Case &quot;min&quot; 'Minangkabau\r\n    Case &quot;kk&quot; 'Kazakh\r\n    Case &quot;eo&quot; 'Esperanto\r\n    Case &quot;eu&quot; 'Basque\r\n    Case &quot;sk&quot; 'Slovak\r\n    Case &quot;da&quot; 'Danish\r\n    Case &quot;bg&quot; 'Bulgarian\r\n    Case &quot;lt&quot; 'Lithuanian\r\n    Case &quot;he&quot; 'Hebrew\r\n    Case &quot;hr&quot; 'Croatian\r\n    Case &quot;hy&quot; 'Armenian\r\n    Case &quot;sl&quot; 'Slovenian\r\n    Case &quot;et&quot; 'Estonian\r\n    Case &quot;uz&quot; 'Uzbek\r\n    Case &quot;simple&quot; 'Simple English\r\n    Case &quot;gl&quot; 'Galician\r\n    Case &quot;vo&quot; 'Volap?k\r\n    Case &quot;nn&quot; 'Norwegian (Nynorsk)\r\n    Case &quot;el&quot; 'Greek\r\n    Case &quot;hi&quot; 'Hindi\r\n    Case &quot;la&quot; 'Latin\r\n    Case &quot;az&quot; 'Azerbaijani\r\n    Case &quot;th&quot; 'Thai\r\n    Case &quot;ka&quot; 'Georgian\r\n    Case &quot;oc&quot; 'Occitan\r\n    Case &quot;be&quot; 'Belarusian\r\n    Case &quot;mk&quot; 'Macedonian\r\n    Case &quot;ce&quot; 'Chechen\r\n    Case &quot;mg&quot; 'Malagasy\r\n    Case &quot;new&quot; 'Newar \/ Nepal Bhasa\r\n    Case &quot;ur&quot; 'Urdu\r\n    Case &quot;ta&quot; 'Tamil\r\n    Case &quot;tt&quot; 'Tatar\r\n    Case &quot;pms&quot; 'Piedmontese\r\n    Case &quot;cy&quot; 'Welsh\r\n    Case &quot;tl&quot; 'Tagalog\r\n    Case &quot;te&quot; 'Telugu\r\n    Case &quot;lv&quot; 'Latvian\r\n    Case &quot;bs&quot; 'Bosnian\r\n    Case &quot;be-x-old&quot; 'Belarusian (Tara?kievica)\r\n    Case &quot;br&quot; 'Breton\r\n    Case &quot;ht&quot; 'Haitian\r\n    Case &quot;sq&quot; 'Albanian\r\n    Case &quot;jv&quot; 'Javanese\r\n    Case &quot;lb&quot; 'Luxembourgish\r\n    Case &quot;mr&quot; 'Marathi\r\n    Case &quot;is&quot; 'Icelandic\r\n    Case &quot;ml&quot; 'Malayalam\r\n    Case &quot;zh-yue&quot; 'Cantonese\r\n    Case &quot;bn&quot; 'Bengali\r\n    Case &quot;af&quot; 'Afrikaans\r\n    Case &quot;ba&quot; 'Bashkir\r\n    Case &quot;pnb&quot; 'Western Panjabi\r\n    Case &quot;ga&quot; 'Irish\r\n    Case &quot;my&quot; 'Burmese\r\n    Case &quot;lmo&quot; 'Lombard\r\n    Case &quot;fy&quot; 'West Frisian\r\n    Case &quot;yo&quot; 'Yoruba\r\n    Case &quot;tg&quot; 'Tajik\r\n    Case &quot;an&quot; 'Aragonese\r\n    Case &quot;cv&quot; 'Chuvash\r\n    Case &quot;sco&quot; 'Scots\r\n    Case &quot;sw&quot; 'Swahili\r\n    Case &quot;ky&quot; 'Kirghiz\r\n    Case &quot;ne&quot; 'Nepali\r\n    Case &quot;io&quot; 'Ido\r\n    Case &quot;gu&quot; 'Gujarati\r\n    Case &quot;bpy&quot; 'Bishnupriya Manipuri\r\n    Case &quot;scn&quot; 'Sicilian\r\n    Case &quot;nds&quot; 'Low Saxon\r\n    Case &quot;ku&quot; 'Kurdish\r\n    Case &quot;ast&quot; 'Asturian\r\n    Case &quot;qu&quot; 'Quechua\r\n    Case &quot;als&quot; 'Alemannic\r\n    Case &quot;gd&quot; 'Scottish Gaelic\r\n    Case &quot;kn&quot; 'Kannada\r\n    Case &quot;su&quot; 'Sundanese\r\n    Case &quot;pa&quot; 'Punjabi\r\n    Case &quot;am&quot; 'Amharic\r\n    Case &quot;ckb&quot; 'Sorani\r\n    Case &quot;ia&quot; 'Interlingua\r\n    Case &quot;nap&quot; 'Neapolitan\r\n    Case &quot;mn&quot; 'Mongolian\r\n    Case &quot;bug&quot; 'Buginese\r\n    Case &quot;bat-smg&quot; 'Samogitian\r\n    Case &quot;wa&quot; 'Walloon\r\n    Case &quot;arz&quot; 'Egyptian Arabic\r\n    Case &quot;map-bms&quot; 'Banyumasan\r\n    Case &quot;zh-min-nan&quot; 'Min Nan\r\n    Case &quot;si&quot; 'Sinhalese\r\n    Case &quot;mzn&quot; 'Mazandarani\r\n    Case &quot;yi&quot; 'Yiddish\r\n    Case &quot;fo&quot; 'Faroese\r\n    Case &quot;sah&quot; 'Sakha\r\n    Case &quot;bar&quot; 'Bavarian\r\n    Case &quot;sa&quot; 'Sanskrit\r\n    Case &quot;vec&quot; 'Venetian\r\n    Case &quot;nah&quot; 'Nahuatl\r\n    Case &quot;os&quot; 'Ossetian\r\n    Case &quot;roa-tara&quot; 'Tarantino\r\n    Case &quot;li&quot; 'Limburgish\r\n    Case &quot;hsb&quot; 'Upper Sorbian\r\n    Case &quot;or&quot; 'Oriya\r\n    Case &quot;pam&quot; 'Kapampangan\r\n    Case &quot;se&quot; 'Northern Sami\r\n    Case &quot;ilo&quot; 'Ilokano\r\n    Case &quot;mrj&quot; 'Hill Mari\r\n    Case &quot;mi&quot; 'Maori\r\n    Case &quot;mhr&quot; 'Meadow Mari\r\n    Case &quot;hif&quot; 'Fiji Hindi\r\n    Case &quot;bcl&quot; 'Central Bicolano\r\n    Case &quot;frr&quot; 'North Frisian\r\n    Case &quot;gan&quot; 'Gan\r\n    Case &quot;bh&quot; 'Bihari\r\n    Case &quot;bo&quot; 'Tibetan\r\n    Case &quot;rue&quot; 'Rusyn\r\n    Case &quot;glk&quot; 'Gilaki\r\n    Case &quot;ps&quot; 'Pashto\r\n    Case &quot;vls&quot; 'West Flemish\r\n    Case &quot;nds-nl&quot; 'Dutch Low Saxon\r\n    Case &quot;fiu-vro&quot; 'V?ro\r\n    Case &quot;tk&quot; 'Turkmen\r\n    Case &quot;pag&quot; 'Pangasinan\r\n    Case &quot;diq&quot; 'Zazaki\r\n    Case &quot;xmf&quot; 'Mingrelian\r\n    Case &quot;co&quot; 'Corsican\r\n    Case &quot;gv&quot; 'Manx\r\n    Case &quot;sc&quot; 'Sardinian\r\n    Case &quot;km&quot; 'Khmer\r\n    Case &quot;csb&quot; 'Kashubian\r\n    Case &quot;hak&quot; 'Hakka\r\n    Case &quot;kv&quot; 'Komi\r\n    Case &quot;zea&quot; 'Zeelandic\r\n    Case &quot;crh&quot; 'Crimean Tatar\r\n    Case &quot;vep&quot; 'Vepsian\r\n    Case &quot;zh-classical&quot; 'Classical Chinese\r\n    Case &quot;ay&quot; 'Aymara\r\n    Case &quot;so&quot; 'Somali\r\n    Case &quot;dv&quot; 'Divehi\r\n    Case &quot;udm&quot; 'Udmurt\r\n    Case &quot;kw&quot; 'Cornish\r\n    Case &quot;eml&quot; 'Emilian-Romagnol\r\n    Case &quot;nrm&quot; 'Norman\r\n    Case &quot;rm&quot; 'Romansh\r\n    Case &quot;wuu&quot; 'Wu\r\n    Case &quot;koi&quot; 'Komi-Permyak\r\n    Case &quot;ug&quot; 'Uyghur\r\n    Case &quot;stq&quot; 'Saterland Frisian\r\n    Case &quot;lad&quot; 'Ladino\r\n    Case &quot;lij&quot; 'Ligurian\r\n    Case &quot;fur&quot; 'Friulian\r\n    Case &quot;szl&quot; 'Silesian\r\n    Case &quot;as&quot; 'Assamese\r\n    Case &quot;mt&quot; 'Maltese\r\n    Case &quot;cbk-zam&quot; 'Zamboanga Chavacano\r\n    Case &quot;gn&quot; 'Guarani\r\n    Case &quot;pcd&quot; 'Picard\r\n    Case &quot;pi&quot; 'Pali\r\n    Case &quot;gag&quot; 'Gagauz\r\n    Case &quot;ie&quot; 'Interlingue\r\n    Case &quot;ksh&quot; 'Ripuarian\r\n    Case &quot;ang&quot; 'Anglo-Saxon\r\n    Case &quot;dsb&quot; 'Lower Sorbian\r\n    Case &quot;ext&quot; 'Extremaduran\r\n    Case &quot;cdo&quot; 'Min Dong\r\n    Case &quot;ace&quot; 'Acehnese\r\n    Case &quot;nv&quot; 'Navajo\r\n    Case &quot;frp&quot; 'Franco-Proven?al\/Arpitan\r\n    Case &quot;kab&quot; 'Kabyle\r\n    Case &quot;sn&quot; 'Shona\r\n    Case &quot;mwl&quot; 'Mirandese\r\n    Case &quot;lez&quot; 'Lezgian\r\n    Case &quot;ln&quot; 'Lingala\r\n    Case &quot;pfl&quot; 'Palatinate German\r\n    Case &quot;krc&quot; 'Karachay-Balkar\r\n    Case &quot;myv&quot; 'Erzya\r\n    Case &quot;haw&quot; 'Hawaiian\r\n    Case &quot;pdc&quot; 'Pennsylvania German\r\n    Case &quot;xal&quot; 'Kalmyk\r\n    Case &quot;rw&quot; 'Kinyarwanda\r\n    Case &quot;nov&quot; 'Novial\r\n    Case &quot;kaa&quot; 'Karakalpak\r\n    Case &quot;to&quot; 'Tongan\r\n    Case &quot;kl&quot; 'Greenlandic\r\n    Case &quot;arc&quot; 'Aramaic\r\n    Case &quot;ha&quot; 'Hausa\r\n    Case &quot;bjn&quot; 'Banjar\r\n    Case &quot;lo&quot; 'Lao\r\n    Case &quot;kbd&quot; 'Kabardian Circassian\r\n    Case &quot;av&quot; 'Avar\r\n    Case &quot;pap&quot; 'Papiamentu\r\n    Case &quot;ty&quot; 'Tahitian\r\n    Case &quot;bxr&quot; 'Buryat (Russia)\r\n    Case &quot;tpi&quot; 'Tok Pisin\r\n    Case &quot;na&quot; 'Nauruan\r\n    Case &quot;mdf&quot; 'Moksha\r\n    Case &quot;lbe&quot; 'Lak\r\n    Case &quot;jbo&quot; 'Lojban\r\n    Case &quot;wo&quot; 'Wolof\r\n    Case &quot;roa-rup&quot; 'Aromanian\r\n    Case &quot;srn&quot; 'Sranan\r\n    Case &quot;sd&quot; 'Sindhi\r\n    Case &quot;ig&quot; 'Igbo\r\n    Case &quot;tet&quot; 'Tetum\r\n    Case &quot;nso&quot; 'Northern Sotho\r\n    Case &quot;tyv&quot; 'Tuvan\r\n    Case &quot;kg&quot; 'Kongo\r\n    Case &quot;ab&quot; 'Abkhazian\r\n    Case &quot;ltg&quot; 'Latgalian\r\n    Case &quot;zu&quot; 'Zulu\r\n    Case &quot;za&quot; 'Zhuang\r\n    Case &quot;om&quot; 'Oromo\r\n    Case &quot;mai&quot; 'Maithili\r\n    Case &quot;tw&quot; 'Twi\r\n    Case &quot;chy&quot; 'Cheyenne\r\n    Case &quot;rmy&quot; 'Romani\r\n    Case &quot;cu&quot; 'Old Church Slavonic\r\n    Case &quot;chr&quot; 'Cherokee\r\n    Case &quot;tn&quot; 'Tswana\r\n    Case &quot;bi&quot; 'Bislama\r\n    Case &quot;pih&quot; 'Norfolk\r\n    Case &quot;rn&quot; 'Kirundi\r\n    Case &quot;got&quot; 'Gothic\r\n    Case &quot;sm&quot; 'Samoan\r\n    Case &quot;bm&quot; 'Bambara\r\n    Case &quot;xh&quot; 'Xhosa\r\n    Case &quot;ss&quot; 'Swati\r\n    Case &quot;mo&quot; 'Moldovan\r\n    Case &quot;iu&quot; 'Inuktitut\r\n    Case &quot;ki&quot; 'Kikuyu\r\n    Case &quot;pnt&quot; 'Pontic\r\n    Case &quot;lg&quot; 'Luganda\r\n    Case &quot;ts&quot; 'Tsonga\r\n    Case &quot;ee&quot; 'Ewe\r\n    Case &quot;ak&quot; 'Akan\r\n    Case &quot;ti&quot; 'Tigrinya\r\n    Case &quot;fj&quot; 'Fijian\r\n    Case &quot;ks&quot; 'Kashmiri\r\n    Case &quot;sg&quot; 'Sango\r\n    Case &quot;ff&quot; 'Fula\r\n    Case &quot;ny&quot; 'Chichewa\r\n    Case &quot;ve&quot; 'Venda\r\n    Case &quot;st&quot; 'Sesotho\r\n    Case &quot;ik&quot; 'Inupiak\r\n    Case &quot;cr&quot; 'Cree\r\n    Case &quot;dz&quot; 'Dzongkha\r\n    Case &quot;tum&quot; 'Tumbuka\r\n    Case &quot;ch&quot; 'Chamorro\r\n    Case &quot;ng&quot; 'Ndonga\r\n    Case &quot;ii&quot; 'Sichuan Yi\r\n    Case &quot;cho&quot; 'Choctaw\r\n    Case &quot;mh&quot; 'Marshallese\r\n    Case &quot;aa&quot; 'Afar\r\n    Case &quot;kj&quot; 'Kuanyama\r\n    Case &quot;ho&quot; 'Hiri Motu\r\n    Case &quot;mus&quot; 'Muscogee\r\n    Case &quot;kr&quot; 'Kanuri\r\n    Case &quot;hz&quot; 'Herero\r\n    Case Else: ret = False\r\n  End Select\r\n  ChkWikipediaLanguage = ret\r\nEnd Function\r\n\r\nPrivate Function EncodeURL(ByVal target_string As String) As String\r\n'URL\u30a8\u30f3\u30b3\u30fc\u30c9\r\n  With CreateObject(&quot;ScriptControl&quot;)\r\n    .language = &quot;JScript&quot;\r\n    EncodeURL = .CodeObject.encodeURIComponent(target_string)\r\n  End With\r\nEnd Function<\/pre>\n<p><a href=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/Wikipedia_Autocomplete_02.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/Wikipedia_Autocomplete_02.jpg\" alt=\"Wikipedia_Autocomplete_02\" width=\"379\" height=\"496\" class=\"alignnone size-full wp-image-5378\" srcset=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/Wikipedia_Autocomplete_02.jpg 379w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/Wikipedia_Autocomplete_02-229x300.jpg 229w\" sizes=\"auto, (max-width: 379px) 100vw, 379px\" \/><\/a><\/p>\n<p>Wikipedia\u304c\u5bfe\u5fdc\u3057\u3066\u3044\u308b\u8a00\u8a9e\u304b\u3069\u3046\u304b\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u300c<span style=\"color: #ff0000; font-weight: bold;\">ChkWikipediaLanguage<\/span>\u300d\u30d7\u30ed\u30b7\u30fc\u30b8\u30e3\u30fc\u306e\u305b\u3044\u3067\u30b3\u30fc\u30c9\u304c\u9577\u304f\u306a\u3063\u3066\u3057\u307e\u3044\u307e\u3057\u305f\u304c\u3001\u3084\u3063\u3066\u3044\u308b\u3053\u3068\u306f<a href=\"http:\/\/www.mediawiki.org\/wiki\/API:Main_page\/ja\" title=\"API:Main page\/ja - MediaWiki\" target=\"_blank\">Wikipedia\u306eAPI<\/a>\u306b\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u6295\u3052\u3001\u7d50\u679c\u3092XML\u3067\u53d7\u3051\u53d6\u3063\u3066\u914d\u5217\u306b\u683c\u7d0d\u3059\u308b\u3068\u3044\u3046\u3001\u3054\u304f\u5358\u7d14\u306a\u3082\u306e\u3067\u3059\u3002<\/p>\n<p>\u5b9f\u969b\u306b\u3069\u306e\u3088\u3046\u306a\u5834\u9762\u3067\u4f7f\u3048\u308b\u306e\u304b\uff1f\u3001\u3068\u3044\u3046\u3053\u3068\u306f\u7f6e\u3044\u3066\u304a\u304f\u3068\u3057\u3066\u3001\u8272\u3005\u306a\u8a00\u8a9e\u306eWikipedia\u3067\u3069\u306e\u3088\u3046\u306a\u30ad\u30fc\u30ef\u30fc\u30c9\u304c\u51fa\u3066\u304f\u308b\u306e\u304b\u3092\u7c21\u5358\u306b\u898b\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u306e\u306f\u4e2d\u3005\u9762\u767d\u3044\u3067\u3059\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"Wikipedia\u306e\u30b5\u30fc\u30c1\u30dc\u30c3\u30af\u30b9\u306b\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u5165\u529b\u3059\u308b\u3068\u3001\u5165\u529b\u3057\u305f\u30ad\u30fc\u30ef\u30fc\u30c9\u3068\u4f3c\u3066\u3044\u308b\u4e88\u6e2c\u30ad\u30fc\u30ef\u30fc\u30c9\u304c\u30ea\u30b9\u30c8\u8868\u793a\u3055\u308c\u307e\u3059(\u3053\u3053\u3067\u306f\u3053\u306e\u6a5f\u80fd\u3092\u30aa\u30fc\u30c8\u30b3\u30f3\u30d7\u30ea\u30fc\u30c8\u3068\u547c\u3076\u3053\u3068\u306b\u3057\u307e\u3059)\u3002 \u4eca\u56de\u306f\u3053\u306e\u4e88\u6e2c\u30ad\u30fc\u30ef\u30fc\u30c9\u4e00\u89a7\u3092\u914d\u5217\u3068 [&hellip;]","protected":false},"author":1,"featured_media":7111,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"\u3069\u3046\u3044\u3063\u305f\u5834\u9762\u3067\u4f7f\u3048\u308b\u306e\u304b\uff1f\u3068\u3044\u3046\u809d\u5fc3\u306a\u90e8\u5206\u306f\u8107\u306b\u7f6e\u3044\u3066\u304a\u304d\u307e\u3059\u3002 [Wikipedia\u306e\u691c\u7d22\u4e88\u6e2c\u30ad\u30fc\u30ef\u30fc\u30c9\u306e\u4e00\u89a7\u3092\u53d6\u5f97\u3059\u308bVBA\u30de\u30af\u30ed]","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[4,48,49,58],"tags":[],"class_list":["post-5377","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-office","category-excel-office","category-word-office","category-powerpoint"],"aioseo_notices":[],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-Excel.png","jetpack_shortlink":"https:\/\/wp.me\/p4UZZr-1oJ","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/5377","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=5377"}],"version-history":[{"count":1,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/5377\/revisions"}],"predecessor-version":[{"id":5380,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/5377\/revisions\/5380"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/media\/7111"}],"wp:attachment":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=5377"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=5377"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=5377"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}