You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No, I mean exactly that. In regexpes:
{number} means exactly that number of repetitions
{,number} means "no more"
{number,} means "more than"
{number,number} means "between"
that's expression /[0-9a-fA-F]{32}/ correspond to the output of SecureRandom.hex(32)
/^[0-9a-f]{24}$/.gen
produces "^[0-9a-f]]]]]]]]]]]]]]]]]]]]]]]]$"
must be a long hex number
The text was updated successfully, but these errors were encountered: