Mercurial > hg > Applications > Grep
changeset 136:15815fcb6c2f pairPro
charClass combination
author | masa |
---|---|
date | Fri, 04 Dec 2015 19:10:00 +0900 |
parents | e1a262ec75f0 |
children | c292c67b3100 |
files | c/regexParser/Makefile c/regexParser/regexParser.cc |
diffstat | 2 files changed, 4 insertions(+), 1 deletions(-) [+] |
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]'