Enter a regular expression to analyze:
/^.*.*.*a.*$/
3. pattern = "^.*.*.*a.*$"
NFA constructed in: 1ms
EDA analysis performed in: 12ms
Does not contain EDA
IDA analysis performed in: 792ms
Does not contain IDA
Total analysis time: 805
False negatives: /^.*.*.*a.*$/, /^.*.*a.*$/. Obviously block on a long string of non-a characters.
Ok: /^.*.*.*a$/, /^.*.*a$/, /^.*.*.*a/, etc.
Looks like .* at the end confuses the tool in some cases.
/cc @davisjam
False negatives:
/^.*.*.*a.*$/,/^.*.*a.*$/. Obviously block on a long string of non-acharacters.Ok:
/^.*.*.*a$/,/^.*.*a$/,/^.*.*.*a/, etc.Looks like
.*at the end confuses the tool in some cases./cc @davisjam