How to include ? to this validation regex?

I have a email validation regex –

/^([^@s]{1,64})@(:[a-zA-Z0-9-]{1,63}.){1,125}[a-zA-Z]{2,63}$/i

I want to restrict user to enter ? in the email address. How can I modify the above regex?

Example – [email protected] should be invalid email.