string(85) "The [/[A-Z0-9]/] pattern accepts the [Has a single uppercase character only.] string."
string(70) "The [/^[A-Z0-9]+$/] pattern accepts the [WILLACCEPTTHISSTRING] string."
string(60) "The [/^[A-Z0-9]+$/] pattern accepts the [0123456789] string."
string(108) "The [/^(?=.*[A-Z])(?=.*[0-9])[A-Z0-9]*$/] does NOT accept the [WILLFAILBECAUSEITONLYCONTAINSLETTERS] string."
string(82) "The [/^(?=.*[A-Z])(?=.*[0-9])[A-Z0-9]*$/] does NOT accept the [0123456789] string."