{"id":4637,"date":"2024-03-14T13:32:00","date_gmt":"2024-03-14T04:32:00","guid":{"rendered":"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%81%ae%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%ae%e5%87%a6%e7%90%86%e3%81%a8%e8%a7%a3%e6%9e%90%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/"},"modified":"2025-08-02T22:38:38","modified_gmt":"2025-08-02T13:38:38","slug":"perl%e3%81%a7%e3%81%ae%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%ae%e5%87%a6%e7%90%86%e3%81%a8%e8%a7%a3%e6%9e%90%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%81%ae%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%ae%e5%87%a6%e7%90%86%e3%81%a8%e8%a7%a3%e6%9e%90%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/","title":{"rendered":"Perl\u3067\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f"},"content":{"rendered":"<p>Perl\u3067\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u3092\u884c\u3046\u969b\u306f\u3001\u901a\u5e38\u6b63\u898f\u8868\u73fe\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002\u4ee5\u4e0b\u306f\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u306b\u3088\u304f\u4f7f\u308f\u308c\u308b\u65b9\u6cd5\u3067\u3059\uff1a<\/p>\n<ol>\n<li>\u30c6\u30ad\u30b9\u30c8\u3092\u6b63\u898f\u8868\u73fe\u3092\u4f7f\u3063\u3066\u30de\u30c3\u30c1\u30f3\u30b0\u3059\u308b\uff1a=~\u6f14\u7b97\u5b50\u3068\u6b63\u898f\u8868\u73fe\u3092\u4f7f\u3063\u3066\u3001\u30c6\u30ad\u30b9\u30c8\u304b\u3089\u7279\u5b9a\u306e\u5185\u5bb9\u3092\u5f15\u304d\u51fa\u3059\u3002<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">my<\/span> $text = <span class=\"hljs-string\">\"This is a sample text\"<\/span>;\r\n<span class=\"hljs-keyword\">if<\/span> ($text =~ <span class=\"hljs-regexp\">\/sample\/<\/span>) {\r\n    <span class=\"hljs-keyword\">print<\/span> <span class=\"hljs-string\">\"Found 'sample' in the text\\n\"<\/span>;\r\n}\r\n<\/code><\/pre>\n<ol>\n<li>\u30c6\u30ad\u30b9\u30c8\u3092\u5206\u5272\u3059\u308b\u305f\u3081\u306bsplit\u95a2\u6570\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002split\u95a2\u6570\u306f\u6307\u5b9a\u3055\u308c\u305f\u533a\u5207\u308a\u6587\u5b57\u306b\u57fa\u3065\u3044\u3066\u30c6\u30ad\u30b9\u30c8\u3092\u914d\u5217\u306b\u5206\u5272\u3057\u307e\u3059\u3002<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">my<\/span> $text = <span class=\"hljs-string\">\"apple,orange,banana\"<\/span>;\r\n<span class=\"hljs-keyword\">my<\/span> @fruits = <span class=\"hljs-keyword\">split<\/span>(<span class=\"hljs-string\">\",\"<\/span>, $text);\r\n<span class=\"hljs-keyword\">foreach<\/span> <span class=\"hljs-keyword\">my<\/span> $fruit (@fruits) {\r\n    <span class=\"hljs-keyword\">print<\/span> <span class=\"hljs-string\">\"$fruit\\n\"<\/span>;\r\n}\r\n<\/code><\/pre>\n<ol>\n<li>\u30c6\u30ad\u30b9\u30c8\u306e\u7f6e\u63db\uff1as\/\/\/\u6f14\u7b97\u5b50\u3092\u4f7f\u7528\u3057\u3066\u30c6\u30ad\u30b9\u30c8\u3092\u7f6e\u63db\u3057\u307e\u3059\u3002<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">my<\/span> $text = <span class=\"hljs-string\">\"Hello, World!\"<\/span>;\r\n$text =~ <span class=\"hljs-regexp\">s\/Hello\/Hi\/<\/span>;\r\n<span class=\"hljs-keyword\">print<\/span> $text;  <span class=\"hljs-comment\"># \u8f93\u51fa \"Hi, World!\"<\/span>\r\n<\/code><\/pre>\n<ol>\n<li>Perl\u306b\u306fchomp\u3001substr\u3001index\u306a\u3069\u591a\u304f\u306e\u7d44\u307f\u8fbc\u307f\u306e\u6587\u5b57\u5217\u51e6\u7406\u95a2\u6570\u304c\u3042\u308a\u3001\u30c6\u30ad\u30b9\u30c8\u3092\u51e6\u7406\u3059\u308b\u306e\u306b\u5229\u7528\u3067\u304d\u307e\u3059\u3002<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">my<\/span> $text = <span class=\"hljs-string\">\"   Perl is a powerful language   \"<\/span>;\r\n$text = trim($text);\r\n<span class=\"hljs-keyword\">print<\/span> $text;  <span class=\"hljs-comment\"># \u8f93\u51fa \"Perl is a powerful language\"<\/span>\r\n<\/code><\/pre>\n<ol>\n<li>Perl\u306b\u306f\u3001\u30c6\u30ad\u30b9\u30c8\u3092\u51e6\u7406\u3059\u308b\u305f\u3081\u306b\u4f7f\u7528\u3067\u304d\u308b\u591a\u304f\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u304c\u3042\u308a\u307e\u3059\u3002Text::ParseWords\u3084Text::CSV\u306a\u3069\u304c\u3042\u308a\u3001\u3088\u308a\u5f37\u529b\u306a\u30c6\u30ad\u30b9\u30c8\u51e6\u7406\u6a5f\u80fd\u3092\u63d0\u4f9b\u3067\u304d\u307e\u3059\u3002<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">use<\/span> Text::ParseWords;\r\n<span class=\"hljs-keyword\">my<\/span> $text = <span class=\"hljs-string\">'This is a \"sample text\" with \"quotes\"'<\/span>;\r\n<span class=\"hljs-keyword\">my<\/span> @words = parse_line(<span class=\"hljs-string\">'\"'<\/span>, <span class=\"hljs-number\">0<\/span>, $text);\r\n<span class=\"hljs-keyword\">foreach<\/span> <span class=\"hljs-keyword\">my<\/span> $word (@words) {\r\n    <span class=\"hljs-keyword\">print<\/span> <span class=\"hljs-string\">\"$word\\n\"<\/span>;\r\n}\r\n<\/code><\/pre>\n<p>\u3053\u308c\u3089\u306e\u65b9\u6cd5\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u3067\u3001\u30c6\u30ad\u30b9\u30c8\u30c7\u30fc\u30bf\u306e\u51e6\u7406\u3068\u89e3\u6790\u304c\u7c21\u5358\u304b\u3064\u52b9\u7387\u7684\u306b\u884c\u3048\u308b\u3088\u3046\u306b\u306a\u308a\u3001Perl\u3067\u306e\u30c6\u30ad\u30b9\u30c8\u51e6\u7406\u304c\u3088\u308a\u30b7\u30f3\u30d7\u30eb\u306b\u306a\u308a\u307e\u3057\u305f\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Perl\u3067\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u3092\u884c\u3046\u969b\u306f\u3001\u901a\u5e38\u6b63\u898f\u8868\u73fe\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002\u4ee5\u4e0b\u306f\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u306b\u3088\u304f\u4f7f\u308f\u308c\u308b\u65b9\u6cd5\u3067\u3059\uff1a \u30c6\u30ad\u30b9\u30c8\u3092\u6b63\u898f\u8868\u73fe\u3092\u4f7f\u3063\u3066\u30de\u30c3\u30c1\u30f3\u30b0\u3059\u308b\uff1a=~\u6f14\u7b97\u5b50\u3068\u6b63\u898f\u8868\u73fe\u3092\u4f7f\u3063\u3066\u3001\u30c6\u30ad\u30b9\u30c8\u304b\u3089\u7279\u5b9a\u306e\u5185\u5bb9\u3092\u5f15\u304d [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[26,61],"class_list":["post-4637","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-26","tag-61"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Perl\u3067\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f - Blog - Silicon Cloud<\/title>\n<meta name=\"description\" content=\"Perl\u3067\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.silicloud.com\/ja\/blog\/perl\u3067\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Perl\u3067\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\" \/>\n<meta property=\"og:description\" content=\"Perl\u3067\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/ja\/blog\/perl\u3067\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-14T04:32:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-02T13:38:38+00:00\" \/>\n<meta name=\"author\" content=\"\u7d50\u8863, \u6625\u82b1\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u7d50\u8863, \u6625\u82b1\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"3\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%81%ae%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%ae%e5%87%a6%e7%90%86%e3%81%a8%e8%a7%a3%e6%9e%90%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%81%ae%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%ae%e5%87%a6%e7%90%86%e3%81%a8%e8%a7%a3%e6%9e%90%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/\",\"name\":\"Perl\u3067\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\"},\"datePublished\":\"2024-03-14T04:32:00+00:00\",\"dateModified\":\"2025-08-02T13:38:38+00:00\",\"author\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/e52a686063ac76fd8cc6f539d41497ac\"},\"description\":\"Perl\u3067\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002\",\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%81%ae%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%ae%e5%87%a6%e7%90%86%e3%81%a8%e8%a7%a3%e6%9e%90%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%81%ae%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%ae%e5%87%a6%e7%90%86%e3%81%a8%e8%a7%a3%e6%9e%90%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%81%ae%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%ae%e5%87%a6%e7%90%86%e3%81%a8%e8%a7%a3%e6%9e%90%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.silicloud.com\/ja\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Perl\u3067\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/\",\"name\":\"Blog - Silicon Cloud\",\"description\":\"\",\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/e52a686063ac76fd8cc6f539d41497ac\",\"name\":\"\u7d50\u8863, \u6625\u82b1\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c74c6e2eb915a3c8e795b3934aa25a7333e0b38e7f1c7baf52785286ad51105e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c74c6e2eb915a3c8e795b3934aa25a7333e0b38e7f1c7baf52785286ad51105e?s=96&d=mm&r=g\",\"caption\":\"\u7d50\u8863, \u6625\u82b1\"},\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/author\/yuiharuka\/\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%81%ae%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%ae%e5%87%a6%e7%90%86%e3%81%a8%e8%a7%a3%e6%9e%90%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/#local-main-organization-logo\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"Blog - Silicon Cloud\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Perl\u3067\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f - Blog - Silicon Cloud","description":"Perl\u3067\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002","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:\/\/www.silicloud.com\/ja\/blog\/perl\u3067\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\/","og_locale":"ja_JP","og_type":"article","og_title":"Perl\u3067\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f","og_description":"Perl\u3067\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002","og_url":"https:\/\/www.silicloud.com\/ja\/blog\/perl\u3067\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\/","og_site_name":"Blog - Silicon Cloud","article_published_time":"2024-03-14T04:32:00+00:00","article_modified_time":"2025-08-02T13:38:38+00:00","author":"\u7d50\u8863, \u6625\u82b1","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"\u7d50\u8863, \u6625\u82b1","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"3\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%81%ae%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%ae%e5%87%a6%e7%90%86%e3%81%a8%e8%a7%a3%e6%9e%90%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/","url":"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%81%ae%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%ae%e5%87%a6%e7%90%86%e3%81%a8%e8%a7%a3%e6%9e%90%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/","name":"Perl\u3067\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website"},"datePublished":"2024-03-14T04:32:00+00:00","dateModified":"2025-08-02T13:38:38+00:00","author":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/e52a686063ac76fd8cc6f539d41497ac"},"description":"Perl\u3067\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002","breadcrumb":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%81%ae%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%ae%e5%87%a6%e7%90%86%e3%81%a8%e8%a7%a3%e6%9e%90%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%81%ae%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%ae%e5%87%a6%e7%90%86%e3%81%a8%e8%a7%a3%e6%9e%90%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%81%ae%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%ae%e5%87%a6%e7%90%86%e3%81%a8%e8%a7%a3%e6%9e%90%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.silicloud.com\/ja\/blog\/"},{"@type":"ListItem","position":2,"name":"Perl\u3067\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u51e6\u7406\u3068\u89e3\u6790\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website","url":"https:\/\/www.silicloud.com\/ja\/blog\/","name":"Blog - Silicon Cloud","description":"","inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/e52a686063ac76fd8cc6f539d41497ac","name":"\u7d50\u8863, \u6625\u82b1","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c74c6e2eb915a3c8e795b3934aa25a7333e0b38e7f1c7baf52785286ad51105e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c74c6e2eb915a3c8e795b3934aa25a7333e0b38e7f1c7baf52785286ad51105e?s=96&d=mm&r=g","caption":"\u7d50\u8863, \u6625\u82b1"},"url":"https:\/\/www.silicloud.com\/ja\/blog\/author\/yuiharuka\/"},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%81%ae%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%ae%e5%87%a6%e7%90%86%e3%81%a8%e8%a7%a3%e6%9e%90%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/#local-main-organization-logo","url":"","contentUrl":"","caption":"Blog - Silicon Cloud"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/4637","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/comments?post=4637"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/4637\/revisions"}],"predecessor-version":[{"id":72200,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/4637\/revisions\/72200"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/media?parent=4637"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/categories?post=4637"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/tags?post=4637"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}