Last active
September 21, 2022 03:06
-
-
Save henrik/d482d41288d732f97f2d to your computer and use it in GitHub Desktop.
Revisions
-
henrik revised this gist
Sep 6, 2015 . No changes.There are no files selected for viewing
-
henrik revised this gist
Sep 5, 2015 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,8 +5,9 @@ defmodule RegexCase do {:->, context, [[condition], result]} end # Base case if nothing matches; "cond" complains otherwise. base_case = quote do: (true -> nil) new_lines = new_lines ++ base_case quote do cond do -
henrik revised this gist
Sep 5, 2015 . No changes.There are no files selected for viewing
-
henrik revised this gist
Sep 5, 2015 . No changes.There are no files selected for viewing
-
henrik created this gist
Sep 5, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ defmodule RegexCase do defmacro regex_case(string, do: lines) do new_lines = Enum.map lines, fn ({:->, context, [[regex], result]}) -> condition = quote do: String.match?(unquote(string), unquote(regex)) {:->, context, [[condition], result]} end # Base case of "true -> nil" if nothing matches. new_lines = new_lines ++ [{:->, [], [[true], nil]}] quote do cond do unquote(new_lines) end end end end defmodule Run do import RegexCase def run do regex_case "hello" do ~r/x/ -> IO.puts("matches x") ~r/e/ -> IO.puts("matches e") ~r/y/ -> IO.puts("matches y") end end end Run.run