Is Regex Matching typo error
Closed this issue · 1 comments
AlexWUrobot commented
There is a typo error of the rule
Regex "(a.b.d)*" matches with the strings "abcdabcd", "abcded", "abed", "a" but not with strings "bcd", "abbd".
The rule should be a(b.d)* matches with the strings "abcdbcd", "abcdbed", "abed", "a" but not with strings "bcd", "abd".
ZikGroot commented
There is a typo error of the rule Regex "(a.b.d)*" matches with the strings "abcdabcd", "abcded", "abed", "a" but not with strings "bcd", "abbd".
The rule should be a(b.d)* matches with the strings "abcdbcd", "abcdbed", "abed", "a" but not with strings "bcd", "abd".
Hello Alex!
Good job on catching the errors! I've made modifications accordingly.
Thanks!
Best,
Tomtom