aboutsummaryrefslogtreecommitdiff
path: root/challenge-099/abigail/lua/ch-1.lua
diff options
context:
space:
mode:
author冯昶 <seaker@qq.com>2021-03-15 18:13:51 +0800
committer冯昶 <seaker@qq.com>2021-03-15 18:13:51 +0800
commit8b6be37fe4dac8b4c6489a95e55514b76b298d15 (patch)
treeae36c8ec2c71f606c0e36adaa19dba366a68a0b4 /challenge-099/abigail/lua/ch-1.lua
parent865acfd056fb6f409ec6b1a81d60b931cbcb69fe (diff)
parentc9aec2da6bcb04b488183f09ca94bee488557aff (diff)
downloadperlweeklychallenge-club-8b6be37fe4dac8b4c6489a95e55514b76b298d15.tar.gz
perlweeklychallenge-club-8b6be37fe4dac8b4c6489a95e55514b76b298d15.tar.bz2
perlweeklychallenge-club-8b6be37fe4dac8b4c6489a95e55514b76b298d15.zip
Merge branch 'master' of github.com:seaker/perlweeklychallenge-club
Diffstat (limited to 'challenge-099/abigail/lua/ch-1.lua')
-rw-r--r--challenge-099/abigail/lua/ch-1.lua47
1 files changed, 47 insertions, 0 deletions
diff --git a/challenge-099/abigail/lua/ch-1.lua b/challenge-099/abigail/lua/ch-1.lua
new file mode 100644
index 0000000000..fc40672471
--- /dev/null
+++ b/challenge-099/abigail/lua/ch-1.lua
@@ -0,0 +1,47 @@
+#!/opt/local/bin/lua
+
+--
+-- See ../README.md
+--
+
+--
+-- Run as: lua ch-1.lua < input-file
+--
+
+for line in io . lines () do
+ --
+ -- Extract the string and pattern
+ --
+ local str, pattern = line : match ("(%S+) +(%S+)")
+
+ --
+ -- Turn the pattern into a Lua pattern, replace any
+ -- character c:
+ -- if c == "?" -> .
+ -- if c == "*" -> .*
+ -- if c is not an alpanum -> %c
+ -- otherwise, keep c as is
+ -- And then add anchors
+ --
+ pattern = pattern : gsub (".", function (c)
+ local result = c
+ if c == "?" then
+ result = "."
+ elseif c == "*" then
+ result = ".*"
+ elseif c : match ("%W") then
+ result = "%" .. c
+ end
+ return result
+ end)
+ pattern = "^" .. pattern .. "$"
+
+ --
+ -- Print 1/0 depending whether we have a match or not.
+ --
+ if (str : match (pattern)) then
+ print (1)
+ else
+ print (0)
+ end
+end