Just started out with regex and struggling to find the right expression. It should contain one "@" character and before and after the "@" it should contain at least one and at most 64 chars which are letters/numbers or dots.
valid: mark@mail.com 
valid: .@. 
invalid: @example.com
I tried: ([a-zA-Z]+\d+\b.@.\b[a-zA-Z]+\d+)
don't get how you mark a character optional. What regex would work?
Update: I tried that suggestion ie other solution , did not work for me : (
 
    