{"id":2749,"date":"2019-10-28T15:27:09","date_gmt":"2019-10-28T14:27:09","guid":{"rendered":"https:\/\/solidt.eu\/site\/?p=2749"},"modified":"2022-07-25T08:33:25","modified_gmt":"2022-07-25T07:33:25","slug":"c-wildcard-match","status":"publish","type":"post","link":"https:\/\/solidt.eu\/site\/c-wildcard-match\/","title":{"rendered":"C# Wildcard match"},"content":{"rendered":"\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"csharp\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">\/\/ using System.Text.RegularExpressions;\npublic static bool WildcardMatch(string pattern, string aString)\n{\n\tRegex regex = new Regex(WildcardToRegex(pattern), RegexOptions.IgnoreCase);\n\treturn regex.IsMatch(aString);\n}\n\npublic static string WildcardToRegex(string pattern)\n{\n\treturn \"^\" + Regex.Escape(pattern).\n\tReplace(\"\\\\*\", \".*\").\n\tReplace(\"\\\\?\", \".\") + \"$\";\n}<\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[6,4,1],"tags":[],"class_list":["post-2749","post","type-post","status-publish","format-standard","hentry","category-dotnet","category-programming","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/2749","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/comments?post=2749"}],"version-history":[{"count":1,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/2749\/revisions"}],"predecessor-version":[{"id":2750,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/2749\/revisions\/2750"}],"wp:attachment":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/media?parent=2749"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/categories?post=2749"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/tags?post=2749"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}