I'm trying to match either @ or the string at, like for name@email and nameatemail. I imagine it's something like
regex = '@|at'
or
regex = '@|(at)'
but I just can't find the right syntax.
I'm trying to match either @ or the string at, like for name@email and nameatemail. I imagine it's something like
regex = '@|at'
or
regex = '@|(at)'
but I just can't find the right syntax.