diff c/regexParser/Makefile @ 136:15815fcb6c2f pairPro

charClass combination
author masa
date Fri, 04 Dec 2015 19:10:00 +0900
parents e1a262ec75f0
children 6c258910cacb
line wrap: on
line diff
--- a/c/regexParser/Makefile	Fri Dec 04 19:07:10 2015 +0900
+++ b/c/regexParser/Makefile	Fri Dec 04 19:10:00 2015 +0900
@@ -44,3 +44,7 @@
 	./$(TARGET) -regex '[a-zA-Z]'
 	./$(TARGET) -regex '[a-zA-Z]*'
 	./$(TARGET) -regex 'a[a-zA-Z]*'
+	./$(TARGET) -regex 'a([a-z])'
+	./$(TARGET) -regex 'a|[a-z]'
+	./$(TARGET) -regex 'a|[a-z]*'
+	./$(TARGET) -regex 'a*|[a-z]'