The plus sign (+ (ASCII code 43)) and all subsequent characters. For example, normalize janedoe+home@gmail.com to janedoe@gmail.com.I tried this codereplacestr(email,left(email,instr(email,"@gmail.com")),lower(trim(concat(split(left(email,instr(email,"@gmail.com")),".+")))))but I'm not getting prope...