Regular Expression support doesn't like digits
description
Attempt to resolve a RegularExpressionRequest for a set of digits, e.g. with this pattern:
@"\d{8}"
That pattern means 'exactly 8 digits', and a string like this satisfies the pattern: "12345678"
However, an attempt to resolve a new RegularExpressionRequest(@"\d{8}") returns a NoSpecimen result.