>/^(\d{6})\@(.*)/ # it begins with 6 digits, then @, then anything
>/^(\d{6,})\@(.*)/ # it begins with 6 or more digits, then @, anythingI would think the trailing .* is necessary? Len
>/^(\d{6})\@(.*)/ # it begins with 6 digits, then @, then anything
>/^(\d{6,})\@(.*)/ # it begins with 6 or more digits, then @, anythingI would think the trailing .* is necessary? Len