{"id":5427,"date":"2017-12-22T04:59:02","date_gmt":"2017-12-21T19:59:02","guid":{"rendered":"http:\/\/pineplanter.moo.jp\/non-it-salaryman\/?p=5427"},"modified":"2017-12-22T04:59:44","modified_gmt":"2017-12-21T19:59:44","slug":"csharp-regex","status":"publish","type":"post","link":"http:\/\/pineplanter.moo.jp\/non-it-salaryman\/2017\/12\/22\/csharp-regex\/","title":{"rendered":"C#\uff1a\u6b63\u898f\u8868\u73fe\u3092\u4f7f\u3063\u305f\u30b5\u30f3\u30d7\u30eb"},"content":{"rendered":"<p>\u3068\u3042\u308b\u30d7\u30ed\u30b0\u30e9\u30e0\u3067\u6b63\u898f\u8868\u73fe\u3092\u99c6\u4f7f\u3057\u3066\u51e6\u7406\u3057\u3088\u3046\u3068\u4f5c\u3063\u305f\u3082\u306e\u304c\u30dc\u30c4\u306b\u306a\u3063\u305f\u306e\u3067\u3059\u304c\u3001\u52ff\u4f53\u306a\u3044\u306e\u3067\u66f8\u304d\u7559\u3081\u3066\u304a\u304d\u307e\u3059\u3002\u3061\u3087\u3063\u3068\u30de\u30cb\u30a2\u30c3\u30af\u306a\u30b5\u30f3\u30d7\u30eb\u3067\u3059\u304c\u3002<\/p>\n<p style=\"text-align: center;\">[ad#top-1]<\/p>\n<h3>\u6307\u5b9a\u3057\u305f\u6587\u5b57\u3068\u6587\u5b57\u306e\u9593\u306b\u3042\u308b\u7279\u5b9a\u6587\u5b57\u3092\u6d88\u3059<\/h3>\n<p>&#8220;\u3068&#8221;\u306e\u4e2d\u306b\u3042\u308b\/\/\u3068\u3044\u3046\u6587\u5b57\u3092\u6d88\u3059\u4f8b\u3067\u3059\u3002<\/p>\n<p><code>x\/\/yz\"abcde\/\/fghijk\"uv\/\/w<\/code> \u3068\u3044\u3046\u6587\u5b57\u5217\u304c\u3042\u3063\u305f\u3089\u3001&#8221;&#8221;\u5185\u306e\/\/\u3092\u6d88\u3059\u65b9\u6cd5\u3067\u3059\u3002&#8221;&#8221;\u5916\u306e\/\/\u306f\u6d88\u3057\u307e\u305b\u3093\u3002<\/p>\n<pre class=\"brush: csharp; title: ; notranslate\" title=\"\">\r\nstring text = &quot;x\/\/yz\\&quot;abcde\/\/fghijk\\&quot;uv\/\/w&quot;;\r\ntext = Regex.Replace(text, &quot;(\\&quot;.+?)\/\/(.+?\\&quot;)&quot;, &quot;$1$2&quot;);\r\n \r\n<\/pre>\n<p>&nbsp;<\/p>\n<h3>\u6307\u5b9a\u3057\u305f\u6587\u5b57\u3068\u6587\u5b57\u306e\u9593\u306b\u3042\u308b\u7279\u5b9a\u6587\u5b57\u5217\u306e\u4e2d\u306b\u6587\u5b57\u3092\u5165\u308c\u308b<\/h3>\n<p>&#8220;\u3068&#8221;\u306e\u4e2d\u306b\u3042\u308b\/\/\u3068\u3044\u3046\u6587\u5b57\u306e\u4e2d\u306bA\u3068\u3044\u3046\u6587\u5b57\u3092\u5165\u308c\u308b\u4f8b\u3067\u3059\u3002<\/p>\n<p><code>x\/\/yz\"abcde\/\/fghijk\"uv\/\/w<\/code> \u3068\u3044\u3046\u6587\u5b57\u5217\u304c\u3042\u3063\u305f\u3089\u3001<code>x\/\/yz\"abcde\/A\/fghijk\"uv\/\/w<\/code>\u3068\u306a\u308a\u307e\u3059\u3002<\/p>\n<pre class=\"brush: csharp; title: ; notranslate\" title=\"\">\r\nstring text = &quot;x\/\/yz\\&quot;abcde\/\/fghijk\\&quot;uv\/\/w&quot;;\r\ntext = Regex.Replace(text, &quot;(\\&quot;.+?\/)(\/.+?\\&quot;)&quot;, &quot;$1A$2&quot;);\r\n \r\n<\/pre>\n<p>&nbsp;<\/p>\n<h3>\u6307\u5b9a\u3057\u305f\u6587\u5b57\u3068\u6587\u5b57\u306e\u9593\u306b\u3042\u308b\u7279\u5b9a\u6587\u5b57\u3092\u201d\u8907\u6570\u201d\u6d88\u3059<\/h3>\n<p>\u4e0a\u306e\u4f8b\u3067\u306f\u3001&#8221;\u3068&#8221;\u306e\u4e2d\u306b\u3042\u308b\/\/\u3068\u3044\u3046\u6587\u5b57\u306f\uff11\u3064\u3057\u304b\u6d88\u305b\u307e\u305b\u3093\u3002\u8907\u6570\u3042\u3063\u3066\u3059\u3079\u3066\u6d88\u3059\u5834\u5408\u306f\u30eb\u30fc\u30d7\u3092\u4f7f\u3044\u307e\u3059\u3002<\/p>\n<pre class=\"brush: csharp; title: ; notranslate\" title=\"\">\r\nstring text = &quot;x\/\/yz\\&quot;abcde\/\/fghijk\\&quot;uv\/\/w&quot;;\r\nwhile(true){\r\n  string work = Regex.Replace(text, &quot;(\\&quot;.+?)\/\/(.+?\\&quot;)&quot;, &quot;$1$2&quot;);\r\n  if(work == text) break;\r\n  text = work;\r\n}\r\n \r\n<\/pre>\n<p>&nbsp;<\/p>\n<p>\u81ea\u5206\u3067\u4f5c\u3063\u305f\u3082\u306e\u3082\u3042\u308a\u307e\u3059\u304c\u3001\u30cd\u30c3\u30c8\u3067\u8cea\u554f\u3057\u3066\u5f97\u305f\u3082\u306e\u3082\u3042\u308a\u3001\u3053\u3053\u307e\u3067\u884c\u304d\u3064\u304f\u307e\u3067\u7d50\u69cb\u82e6\u52b4\u3057\u307e\u3057\u305f\u3002\uff08\u3067\u3001\u7d50\u5c40\u30dc\u30c4\u306b\u306a\u3063\u305f\u306e\u3067\u3059\u304c&#8230;\uff09<\/p>\n<p>&nbsp;<\/p>\n<p style=\"text-align: center;\">[ad#ad-1]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u3068\u3042\u308b\u30d7\u30ed\u30b0\u30e9\u30e0\u3067\u6b63\u898f\u8868\u73fe\u3092\u99c6\u4f7f\u3057\u3066\u51e6\u7406\u3057\u3088\u3046\u3068\u4f5c\u3063\u305f\u3082\u306e\u304c\u30dc\u30c4\u306b\u306a\u3063\u305f\u306e\u3067\u3059\u304c &#8230; <\/p>\n","protected":false},"author":1,"featured_media":5435,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[7],"tags":[],"class_list":["post-5427","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-csharp"],"aioseo_notices":[],"_links":{"self":[{"href":"http:\/\/pineplanter.moo.jp\/non-it-salaryman\/wp-json\/wp\/v2\/posts\/5427","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/pineplanter.moo.jp\/non-it-salaryman\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/pineplanter.moo.jp\/non-it-salaryman\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/pineplanter.moo.jp\/non-it-salaryman\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/pineplanter.moo.jp\/non-it-salaryman\/wp-json\/wp\/v2\/comments?post=5427"}],"version-history":[{"count":7,"href":"http:\/\/pineplanter.moo.jp\/non-it-salaryman\/wp-json\/wp\/v2\/posts\/5427\/revisions"}],"predecessor-version":[{"id":5436,"href":"http:\/\/pineplanter.moo.jp\/non-it-salaryman\/wp-json\/wp\/v2\/posts\/5427\/revisions\/5436"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/pineplanter.moo.jp\/non-it-salaryman\/wp-json\/wp\/v2\/media\/5435"}],"wp:attachment":[{"href":"http:\/\/pineplanter.moo.jp\/non-it-salaryman\/wp-json\/wp\/v2\/media?parent=5427"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/pineplanter.moo.jp\/non-it-salaryman\/wp-json\/wp\/v2\/categories?post=5427"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/pineplanter.moo.jp\/non-it-salaryman\/wp-json\/wp\/v2\/tags?post=5427"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}