{"id":1822,"date":"2015-05-14T10:28:52","date_gmt":"2015-05-14T01:28:52","guid":{"rendered":"http:\/\/excelwork.info\/excel\/?p=1822"},"modified":"2015-05-14T10:28:52","modified_gmt":"2015-05-14T01:28:52","slug":"funcstring","status":"publish","type":"post","link":"https:\/\/excelwork.info\/excel\/funcstring\/","title":{"rendered":"\u6587\u5b57\u5217\uff1a\u6587\u5b57\u3092\u6307\u5b9a\u6570\u4e26\u3079\u305f\u6587\u5b57\u5217\u3092\u8fd4\u3059\uff08String \u95a2\u6570\uff09"},"content":{"rendered":"<h2>String \u95a2\u6570<\/h2>\n<br \/>\n<div class=\"m30-l\">\n<div class=\"kkbox\"><strong>\u3010\u66f8\u5f0f\u3011<\/strong><\/p>\n<p><em>result<\/em> = <strong>String<\/strong> ( <em>number<\/em>, <em>character<\/em> )<\/p>\n<\/div>\n<br \/>\n<h3>\u5f15\u6570\u30fb\u623b\u308a\u5024<\/h3>\n<ul style=\"margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0;\">\n<li>number&nbsp;&nbsp;\u30fb\u30fb\u30fb&nbsp;&nbsp;\u4e26\u3079\u308b\u6587\u5b57\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059\u3002<\/li>\n<li>character&nbsp;&nbsp;\u30fb\u30fb\u30fb&nbsp;&nbsp;\u6587\u5b57\u30b3\u30fc\u30c9\uff08ASCII \u307e\u305f\u306f \u30b7\u30d5\u30c8JIS\uff09\u307e\u305f\u306f\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u3001<span class=\"red\"><strong>\u6587\u5b57\u30b3\u30fc\u30c9\u306e\u793a\u3059\u6587\u5b57<\/strong><\/span>\u3001\u3082\u3057\u304f\u306f<span class=\"red\"><strong>\u6587\u5b57\u5217\u306e\u5148\u982d\u6587\u5b57<\/strong><\/span>\u304c\u3001\u4e26\u3079\u308b\u5bfe\u8c61\u306e\u6587\u5b57\u3068\u306a\u308a\u307e\u3059\u3002<\/li>\n<li>result&nbsp;&nbsp;\u30fb\u30fb\u30fb&nbsp;&nbsp;<em>character<\/em> \u3067\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\uff08\u6587\u5b57\u30b3\u30fc\u30c9\u306e\u793a\u3059\u6587\u5b57\u307e\u305f\u306f\u6587\u5b57\u5217\u306e\u5148\u982d\u306e\u6587\u5b57\uff09\u3092 <em>number<\/em> \u500b\u4e26\u3079\u3066\u4f5c\u6210\u3057\u305f\u6587\u5b57\u5217\uff08\u30d0\u30ea\u30a2\u30f3\u30c8\u578b\uff09<\/li>\n<\/ul>\n<br \/>\n<p class=\"caution4\">\u5f15\u6570 <em>character<\/em> \u306b ASCII \u3067\u3082\u30b7\u30d5\u30c8JIS \u3067\u3082\u306a\u3044\u7121\u52b9\u306a\u6570\u5024\u3092\u6307\u5b9a\u3059\u308b\u3068\u30010 \u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059\u3002<\/p>\n<p class=\"caution4\">\u5f15\u6570 <em>character<\/em> \u306b Null \u5024\u304c\u542b\u307e\u308c\u308b\u5834\u5408\u306f\u3001<strong>Null \u5024<\/strong>\u3092\u8fd4\u3057\u307e\u3059\u3002<\/p>\n<p class=\"caution4\">\u5f15\u6570 <em>number<\/em> \u306b Null \u5024\u304c\u542b\u307e\u308c\u308b\u5834\u5408\u306f\u3001\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059\u3002<\/p>\n<\/div>\n<br \/><br \/>\n<h2>Space \u95a2\u6570 \u306e\u4f7f\u7528\u4f8b<\/h2>\n<div class=\"m30-l\">\n<h3 id=\"vba_sample\">\u30b5\u30f3\u30d7\u30ebVBA\u30bd\u30fc\u30b9<\/h3>\n<pre class=\"lang:vb mark:0 decode:true \" title=\"Space \u95a2\u6570\u306e\u4f7f\u7528\u4f8b\" data-url=\"http:\/\/example.co.jp\" >\r\n\r\n\u3000\r\nSub Sample_String()\r\n\r\n    \r\n    Debug.Print String(5, \"\uff03\")             '\uff03\uff03\uff03\uff03\uff03\r\n    \r\n    Debug.Print String(8, \"\u304a\u306f\u3088\u3046\uff01\")     '\u304a\u304a\u304a\u304a\u304a\u304a\u304a\u304a\r\n    \r\n    Debug.Print String(3, 35)               '###\r\n    \r\n    Debug.Print String(7, 50)               '2222222\r\n    \r\n    Debug.Print String(10, 66)              'BBBBBBBBBB\r\n    \r\n    Debug.Print String(5, Null)             'Null\r\n    \r\n\r\nEnd Sub\r\n\u3000\r\n\r\n<\/pre>\n<br \/>\n<h3>\u5b9f\u884c\u7d50\u679c<\/h3>\n<p><a href=\"https:\/\/i1.wp.com\/excelwork.info\/excel\/wp\/wp-content\/uploads\/2015\/05\/func_string02.jpg?ssl=1\" rel=\"lightbox[1822]\"><img loading=\"lazy\" src=\"https:\/\/i1.wp.com\/excelwork.info\/excel\/wp\/wp-content\/uploads\/2015\/05\/func_string02.jpg?resize=384%2C400&#038;ssl=1\" alt=\"String \u95a2\u6570 \u4f7f\u7528\u4f8b\" width=\"384\" height=\"400\" class=\"alignnone size-medium wp-image-1825\" srcset=\"https:\/\/i1.wp.com\/excelwork.info\/excel\/wp\/wp-content\/uploads\/2015\/05\/func_string02.jpg?resize=384%2C400&amp;ssl=1 384w, https:\/\/i1.wp.com\/excelwork.info\/excel\/wp\/wp-content\/uploads\/2015\/05\/func_string02.jpg?w=536&amp;ssl=1 536w\" sizes=\"(max-width: 384px) 100vw, 384px\" data-recalc-dims=\"1\" \/><\/a><\/p>\n<br \/><\/div>\n<br \/><br \/>\n","protected":false},"excerpt":{"rendered":"<p>String \u95a2\u6570 \u3010\u66f8\u5f0f\u3011 result = String ( number, &#8230; <\/p>\n","protected":false},"author":1,"featured_media":1854,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"amp_status":"","spay_email":"","jetpack_publicize_message":""},"categories":[37],"tags":[224,63,38,187],"jetpack_featured_media_url":"https:\/\/i2.wp.com\/excelwork.info\/excel\/wp\/wp-content\/uploads\/2015\/05\/func_string02-384x4001.jpg?fit=384%2C400&ssl=1","jetpack_publicize_connections":[],"jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p4Ye9i-to","_links":{"self":[{"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/posts\/1822"}],"collection":[{"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/comments?post=1822"}],"version-history":[{"count":3,"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/posts\/1822\/revisions"}],"predecessor-version":[{"id":1853,"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/posts\/1822\/revisions\/1853"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/media\/1854"}],"wp:attachment":[{"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/media?parent=1822"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/categories?post=1822"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/excelwork.info\/excel\/wp-json\/wp\/v2\/tags?post=1822"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}