>/^(\d{6})\@(.*)/ # it begins with 6 digits, then @, then anything
>/^(\d{6,})\@(.*)/  # it begins with 6 or more digits, then @, anything

I would think the trailing .* is necessary?

Len


Reply via email to